Build, backtest, and deploy quantitative trading strategies from your AI agent.
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.
Inspect callable tools, capabilities, and parameters exposed to AI agents by CPZAI.
StrategiesCallable MCP tool function
list_strategiesList trading strategies with filtering
get_strategyGet a specific strategy by ID
create_strategyCreate a new trading strategy
update_strategyUpdate an existing strategy
BacktestsCallable MCP tool function
A Model Context Protocol adapter for CPZAI: strategies, saved backtests, broker accounts, orders, portfolio positions, market data, risk, provider connections, and middle-office reporting.
Hosted endpoint: https://mcp.cpz-lab.com/mcp
Transport: stateless Streamable HTTP
Current source: version 1.2.0 β 31 tools, two guide resources, two workflow prompts.
This README describes the updated source, not a completed production deployment. Use your connected client's tools/list, resources/list, and prompts/list to verify deployed capabilities. The previous source registered 21 tools; old references to 18 tools or a proposed 29-tool release were inaccurate.
Create a key and secret in Settings β API Keys at CPZAI. In a client supporting remote MCP with custom headers, configure:
Use your client's equivalent connector settings when its configuration format differs. OAuth-capable clients can connect to the same MCP URL and complete sign-in using PKCE S256. Discovery endpoints:
https://mcp.cpz-lab.com/.well-known/oauth-authorization-serverhttps://mcp.cpz-lab.com/.well-known/oauth-protected-resourceOAuth access tokens are opaque and accepted by this server. Do not pass them directly to the REST API. Legacy Bearer cpz_key_β¦SECRET credentials are disabled by default; use header authentication or OAuth.
| Domain | Tool | Purpose |
|---|---|---|
| Strategies | list_strategies | status, strategy_type, title |
| Strategies | get_strategy | Read one strategy |
| Strategies | create_strategy | Create a strategy |
| Strategies | update_strategy | Update selected strategy fields |
| Backtests | get_backtest_results | List saved backtest runs |
| Backtests | get_backtest_result | Read one saved backtest run |
| Orders | list_orders | status, symbol, side, strategy_id |
| Orders | get_order | Read one CPZ order record |
| Orders | place_order | Submit an order to the selected connected account |
| Portfolio | list_positions | account_id, symbol |
| Portfolio | sync_portfolio | Synchronize connected broker portfolios |
| Accounts | list_accounts | broker, environment, tradable |
| Connections | list_connections | connection_type |
| Connections | create_connection | Store an encrypted provider credential |
| Data files | list_data_files | name, status, file_type |
| Data files | get_data_file | Read uploaded file metadata |
| Market data | get_market_data | Fetch current quotes for symbols |
| Market data | get_bars | Fetch historical OHLCV bars |
| Risk | compute_risk | Compute and store a fresh risk snapshot |
| Risk | list_risk_snapshots | account_id |
| Risk | get_risk_snapshot | Read one saved risk snapshot |
| Execution | execute_strategy | Execute strategy code; may place orders |
| Middle office | list_deals | entity_id, fund, book, deal_id, product_kind, status |
| Middle office | list_lifecycle_events | entity_id, deal_id, kind, status, from, to |
| Middle office | list_cash_flows | entity_id, deal_id, fund, book, from, to, unsettled |
| Middle office | list_journal_entries | entity_id, deal_id, from, to |
| Middle office | list_fund_periods | entity_id, fund, status |
| Webhooks | list_webhooks | active |
| Webhooks | create_webhook | Subscribe an HTTPS endpoint to events |
| Webhooks | delete_webhook | Remove a webhook subscription |
| Profile | get_profile | Read your authenticated profile |
Filters in the table are optional. Single-record tools require a CPZ record UUID returned by a corresponding list tool. get_order takes the CPZ record ID, not the broker order ID. File reads return metadata; they do not download file contents or sample rows. Backtest tools read saved runs; they do not start a backtest.
All list tools take limit (integer 1β100) and offset (nonnegative integer, default 0), plus any sorting fields in their advertised schemas. The default limit is 50, except list_accounts, which defaults to 100. Use an explicit limit when paging. REST count is the current page length, not a total. Continue paging until fewer than limit items are returned before reporting a complete portfolio.
For the next page of the same list, use {"limit":100,"offset":100}. An upstream error is not an empty final page.
get_bars accepts symbols, timeframe, start, end, limit (1β10,000 bars per symbol), and feed (iex or sip, subject to provider entitlements). Supported timeframes are 1Min, 5Min, 15Min, 30Min, 1Hour, 2Hour, 4Hour, 1Day, 1Week, and 1Month.
Middle-office lists support optional entity_id for an entity book where the caller is an active member; otherwise they use the personal book. Preserve minor-unit decimal strings as exact values rather than converting them to JavaScript numbers.
Use list_accounts to inspect environment and tradable before selecting an account. tradable: true filters to routable accounts; false or omitted includes all. Account discovery covers more providers than order routing. Live or paper execution follows the chosen account and platform controls.
place_order requires positive quantities. Limit/stop-limit orders require price; stop/stop-limit orders require stop_price. Only time_in_force: "day" is exposed, because legacy routes support that duration only. Supported order types remain broker-dependent. execute_strategy can place trades and is not a signal preview or dry run. Invoke these tools only for trading the user has authorized.
Tool annotations describe side effects. Actual authorization is enforced by the REST API's key, subscription, ownership, and resource-scope checks. Legacy read/write/trade permissions are expanded by that API into resource scopes.
Tool responses preserve readable JSON text and include structured content. Most read tools declare an outputSchema so a client can validate what came back: list routes return {data, count}, single-record routes return {data}, and a delete returns {message}. The action tools that proxy to another service (execute_strategy, sync_portfolio, compute_risk, get_market_data, get_bars) and the two writes with their own handlers (place_order, create_connection) declare no output schema, because their shape is not this server's to promise. Output validation is skipped for error results. Check isError before using the result. Malformed upstream responses and provider failures stay errors. Request IDs support tracing without logging credentials.
Eligible GET calls can retry transient upstream failures within a bounded timeout. Writes are not automatically retried. A timeout after order submission leaves the result unconfirmed; inspect existing orders and the broker before retrying. The public order route does not provide a general end-to-end idempotency guarantee.
| Kind | Name | Purpose |
|---|---|---|
| Resource | cpzai://guides/tool-usage | Tool selection, pagination, and capability boundaries |
| Resource | cpzai://guides/permissions | Resource permissions and execution boundaries |
| Resource | cpzai://guides/discovery | Endpoints, deferred loading, and the search conventions |
| Prompt | review_portfolio | Portfolio review workflow; optional account_id |
| Prompt | analyze_strategy | Strategy investigation; required strategy_id |
Requesting a prompt returns instructions; it does not execute a workflow. Discover these using standard MCP methods. There is no /mcp/info endpoint.
The full catalogue is 31 tools and roughly 27 KB of JSON Schema, which every client pays for on every request unless it can defer tool loading. Tool-selection accuracy also falls off once a model is choosing between more than about thirty tools. There are two endpoints, serving identical tools under different discovery models.
POST /mcp: full cataloguetools/list returns every tool. Use this when the client defers loading itself: it needs the definitions in order to defer them. With Claude's MCP connector, pair defer_loading with the tool search tool and keep the everyday reads loaded:
Deferred definitions are still sent on every request; they stay out of the model's context until a search discovers them, and the prompt prefix is untouched, so the cache survives. Claude Code applies its own tool search to this endpoint with no configuration.
POST /mcp/compact: server-side discoveryFor clients with no deferral of their own. tools/list returns 15 tools instead of 31 (about 12 KB instead of 27 KB, a 55% cut):
Factual signals from GitHub, npm, and our automated checks β not a rating.
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/cpzai)<a href="https://allmcps.com/mcp/cpzai"><img src="https://allmcps.com/api/badge/cpzai?style=directory" alt="CPZAI on AllMCPs" /></a>