MCP
All Synth MCP tools support both 1-hour and 24-hour forecast horizons. When using tools like get-prediction-percentiles, get-insights-volatility, or get-insights-option-pricing, you can specify the horizon by passing horizon=1h or horizon=24h (default).
MCP allows AI agents to integrate seamlessly to external data sources and tools.
Synth API MCP is a remote MCP server at https://mcp.synthdata.co/v1/mcp/apikey/json.
There are 2 authentications methods:
OAuth (coming soon)
API Key
To authenticate the MCP with your API key, you need to add custom headers:
header key: Authorization
header value: Bearer <your synth api key>
Connect with Claude Desktop
Download the Desktop Extension: synth.mcpb.
To add the extension double click on the file and Claude Desktop will ask you to install, and input your API key.
Connect with Claude Code CLI
Claude Code provides a CLI to use the agentic coding tool of Anthropic. Read more here.
To add the SynthData MCP server, type the command:
Connect with mcp-remote
mcp-remote is a tool that allows you to install a remote MCP server for a local MCP client. It creates a local STDIO MCP to proxies to the remote HTTP Stream Synth MCP. Read more here.
Type the command to add the Synth MCP:
Connect with Vercel AI SDK
Vercel AI SDK supports connecting to remote MCP servers. Read more here.
Connect with OpenAI
OpenAI platform allows you to connect to MCP server:
go to the Open AI Platform: https://platform.openai.com/chat
on the tools configuration, click "Add"
chose "MCP server"
click on "+ Server" button
input the url: https://mcp.synthdata.co/v1/mcp/apikey/json
chose a label: synth
on authentication, select "Custom headers"
type "Authorization" in the header input
type "Bearer <your api key>" in the value input, change with your API key that you create here https://dashboard.synthdata.co/api-keys
Click on "Connect"
You can now prompt the LLM and ask for Synth Insights.
Last updated