MacroFeed is the product surface. Its public methods include
get_next_release, get_upcoming_events, and get_event. The CTX marketplace MCP is the client interface your agent uses to reach MacroFeed and other marketplace products.Before you connect
Complete the one-time account setup in Context:- Sign in to create your embedded wallet.
- Set the USDC spending cap and fund the wallet.
- Open Settings, create an API key, and copy the
sk_live_...value.
Authorization: Bearer sk_live_....
Cursor
Add the server to your project’s.cursor/mcp.json, or use the same entry in Cursor’s global MCP settings.
Claude Code
Run:OpenClaw or Claw Code
Add this entry to the client’smcp.json:
Any Streamable HTTP MCP client
Use these connection values:
The server returns an
Mcp-Session-Id after initialization. Clients that persist sessions should send it on subsequent requests.
See the official CTX marketplace MCP documentation for the current tool reference and troubleshooting guidance.
Pin MacroFeed
MacroFeed is published in the marketplace as:context_query, context_discover, and context_execute, plus query-job helpers for longer requests.
For a natural-language answer constrained to MacroFeed, ask your agent to call context_query with:
toolIds is the remote MCP parameter. In the TypeScript and Python SDKs, the equivalent Query parameter is named tools.
Call one MacroFeed method directly
Usecontext_discover with mode: "execute" before direct execution so the client confirms which methods are currently Execute-eligible.
context_execute with the MacroFeed ID and method:
context_query when you want CTX to manage tool selection, grounding, and synthesis. Use context_discover followed by context_execute when your agent needs a specific MacroFeed method and raw structured output.
Try MacroFeed in Context
Ask a macro question in the hosted Context interface.
Build with the SDK
Use Query or Execute from a TypeScript or Python service.