Query financial index data, run backtests, and deploy systematic investment strategies on Index One.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Remote MCP server for Index One β query financial index data, run backtests, and build and deploy systematic investment strategies from any MCP-capable client.
| Endpoint | https://api.indexone.io/mcp |
| Transport | Streamable HTTP (stateless, POST only) |
| Auth | OAuth 2.1, or a team API key in x-api-key |
| Tools | 22 |
| Registry | io.indexone/mcp |
| Docs | https://indexone.io/docs/mcp |
This repository is the public home for the server's manifest, tool reference and client examples. The server itself is hosted by Index One β there is nothing to install, build or run locally, and the server implementation is not open source.
Index One builds and calculates custom financial indices. The MCP server exposes that platform as tools, so an agent can:
The server is a tool surface, not a chatbot: your client's own model does the reasoning and calls tools one at a time. Every call is scoped to your team.
OAuth β clients that implement the MCP authorization spec (the Claude web and Desktop connectors, among others) need only the endpoint URL. You'll be sent to a sign-in page and log in with your normal Index One account; no key ends up in a config file.
API key β everything else sends a team API key as the x-api-key header. This covers Claude Code, Cursor, VS Code and custom agents, which register on a random local port that OAuth providers can't pre-approve. Create and revoke keys in the Index One console under Team β API Keys.
Both resolve to the same team scope. Rate limit is roughly 60 calls per minute per team; over that you get 429 with Retry-After.
Settings β Connectors β Add custom connector, paste https://api.indexone.io/mcp, leave the advanced OAuth fields empty, and sign in with your Index One account.
~/.cursor/mcp.json.vscode/mcp.jsonclaude_desktop_config.jsonDesktop reaches remote servers through the mcp-remote bridge:
On Windows, use "command": "cmd" with "args": ["/c", "npx", ...] β Desktop resolves npx to a path containing a space, which breaks the launch. Write the header with no space after the colon; Desktop does not escape spaces inside arguments.
See examples/ for a raw JSON-RPC call over curl and a Python client using the official MCP SDK.
Full reference with descriptions: TOOLS.md.
| Group | Tools |
|---|---|
| Index data | get_index, get_index_values, get_index_holdings, get_index_weightings, get_index_universe, get_index_stats |
| Backtesting | run_backtest, get_backtest |
| Discovery | list_operations, get_operations, list_examples, get_example, list_workflows, get_workflow, list_datasets, inspect_dataset |
| Preview | run_workflow, inspect_run, get_column_values |
| Persistence | validate_workflow, save_workflow, deploy_index |
Writes are deliberately narrow: an agent can save drafts and deploy an index β the latter only with confirm=true, after a full backtest, and never as an empty index β and there is no delete tool.
An index workflow is a DAG of operations: a trigger that sets the schedule, operations that select, filter and weight securities, and a create_index_holdings step that turns the result into holdings. Agents discover that shape rather than assuming it. The server ships instructions telling the client's model to follow this path:
Operation names, dataset ids, column names and filter values are always looked up, never guessed.
POST only (GET/DELETE return 405), JSON responses returned directly β no SSE stream required.inspect_run and get_column_values work across calls.run_backtest and deploy_index never hold the connection open: they validate synchronously, then return a backtest_id (and, for deploys, the pending index_id) immediately; poll get_backtest for the result β it absorbs part of the wait server-side, so polling back-to-back is fine.Questions, higher rate limits, or anything odd: support@indexone.io
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/index-one-2)<a href="https://allmcps.com/mcp/index-one-2"><img src="https://allmcps.com/api/badge/index-one-2?style=directory" alt="Index One on AllMCPs" /></a>