Connect a client
The Forktime MCP server is a standard remote MCP endpoint:
https://api.forktime.ai/mcpAnything that speaks MCP (Streamable HTTP) can use it — your own agent, or an off-the-shelf client. How you authenticate depends on the client: interactive apps use OAuth; servers and CLIs use an API key.
Your own app
Section titled “Your own app”Use any MCP client library, point it at the endpoint, and attach your credential — a Bearer gfk_… API key for a backend, or the OAuth flow for an interactive app. Then the standard MCP handshake applies: the server lists its tools, and you call list_brands first to get a slug to pass on every other call.
Off-the-shelf clients
Section titled “Off-the-shelf clients”These require OAuth — you sign in and approve in the browser.
- Open Settings → Connectors → Add custom connector.
- Paste
https://api.forktime.ai/mcp. - Click Connect and approve the Forktime sign-in.
- Ask it to
list_brandsto confirm.
- Open Settings → MCP → Add new MCP server.
- Add an HTTP server at
https://api.forktime.ai/mcp. - Approve the OAuth flow on first use.
Claude Code supports a static token, so use an API key:
claude mcp add --transport http forktime https://api.forktime.ai/mcp \ --header "Authorization: Bearer gfk_live_your_key_here"Verify
Section titled “Verify”Whatever the client, the first successful call should be list_brands. If it returns your brands, you’re connected. A 401 means the credential wasn’t accepted; a “not permitted” tool error means it’s valid but missing that scope.