StockFit supports the Model Context Protocol (MCP) with OAuth 2.1 authentication. Sign in once in a browser — your AI client handles tokens automatically. No API keys to copy or rotate.
Same config for everyone — no API key needed. Your client opens a browser the first time you connect, you sign in, and tokens refresh automatically after that.
{
"mcpServers": {
"stockfit": {
"type": "http",
"url": "https://api.stockfit.io/mcp"
}
}
}Each client stores MCP config in a slightly different place. Click through for the latest setup docs.
Replace YOUR_API_KEY with the token from your dashboard. This path uses mcp-remote to bridge HTTP → stdio for clients that don't yet support OAuth or HTTP transport directly.
{
"mcpServers": {
"stockfit": {
"command": "npx",
"args": [
"mcp-remote",
"https://api.stockfit.io/mcp",
"--header",
"Authorization: Bearer YOUR_API_KEY"
]
}
}
}No credit card. The OAuth flow uses your StockFit login.