Skip to content

Use with Cursor and Claude Code

StockKit ships a hosted Model Context Protocol server at https://api.stockkit.dev/mcp. Any MCP client (Cursor, Claude Code, Claude Desktop, Windsurf, and others) can use StockKit as native tools with a one-line config. Nothing to install, no API key.

One-click install: Add StockKit to Cursor

Or add to .cursor/mcp.json in your project (or ~/.cursor/mcp.json globally):

{
"mcpServers": {
"stockkit": {
"url": "https://api.stockkit.dev/mcp"
}
}
}

The full Cursor plugin, with skills for research and non-custodial trade building plus an always-on safety rule, lives at stockkit-labs/cursor.

StockKit ships as a Codex plugin. Add the marketplace, then install:

Terminal window
codex plugin marketplace add stockkit-labs/openai
codex plugin add stockkit@stockkit

The plugin repo, including the ChatGPT Apps SDK submission manifest with per-tool safety annotations, lives at stockkit-labs/openai.

Terminal window
claude mcp add --transport http stockkit https://api.stockkit.dev/mcp

Add to ~/.codeium/windsurf/mcp_config.json:

{
"mcpServers": {
"stockkit": {
"serverUrl": "https://api.stockkit.dev/mcp"
}
}
}
Tool What it does
list_assets Enumerate tokenized stocks, with optional search
get_asset Full metadata for one asset
get_price Live USD price with daily range and halt status
get_research SEC-sourced facts about the company behind a token
get_quote Executable DEX quote from Uniswap v3 pools
get_portfolio Any wallet’s balances valued in USD
build_trade Unsigned approve + swap transactions to sign yourself
get_history OHLC candles of the onchain DEX price (5m to 1d)
get_stats Supply, pool TVL, DEX premium vs equity quote, 24h change
list_markets Pons v2 launchpad markets with graduation status
list_corporate_actions Splits, dividends, mergers

build_trade returns unsigned calldata only. Your agent or editor session signs with its own wallet; StockKit never sees keys and never submits transactions.