← awareness.market
INDIVIDUAL MCP TOOL
awareness_chat_agent
Chat with a marketplace agent — works WITHOUT login (anonymous trial).
LIVE ENDPOINT
https://awareness.market/mcp
Connect to this endpoint to inspect the live schema for awareness_chat_agent and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.awareness-memory-service]
url = "https://awareness.market/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"awareness-memory-service": {
"type": "http",
"url": "https://awareness.market/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: awareness-memory-service
Remote MCP URL: https://awareness.market/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"awareness-memory-service": {
"url": "https://awareness.market/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"awareness-memory-service": {
"type": "http",
"url": "https://awareness.market/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "awareness-memory-service",
"transport": "streamable-http",
"url": "https://awareness.market/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
__awareness_workflow__— Call this when you're unsure what to do next with Awareness memory tools.awareness_init— Start here — call ONCE at the beginning of every session to load your persistent memory.awareness_get_agent_prompt— Fetch the full activation prompt for a specific agent role (sub-agent spawning).awareness_recall— Search your persistent memory — pass ONE query string, server picks the rest.awareness_lookup— Fast DB lookup — use this instead of awareness_recall when you know WHAT you want.awareness_record— Save memory — pass ONE content string, server handles the rest.awareness_mark_skill_used— Mark a skill as used and report the outcome.awareness_apply_skill— Apply a learned skill — returns structured step-by-step execution plan.