Skip to main content
Connect the official CTX marketplace MCP once, then use MacroFeed from any compatible agent. You do not install a separate MacroFeed server.
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:
  1. Sign in to create your embedded wallet.
  2. Set the USDC spending cap and fund the wallet.
  3. Open Settings, create an API key, and copy the sk_live_... value.
The remote MCP uses this endpoint:
Transport is Streamable HTTP. Every request is authenticated with 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.
Restart Cursor after saving the file.

Claude Code

Run:

OpenClaw or Claw Code

Add this entry to the client’s mcp.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:
After connecting, the CTX server exposes 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

Use context_discover with mode: "execute" before direct execution so the client confirms which methods are currently Execute-eligible.
Then call context_execute with the MacroFeed ID and method:
Use 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.