loading…
Search for a command to run...
loading…
Provides market data from Derive.xyz, allowing users to query currencies, instruments, tickers, and historical price information. This server enables access to
Provides market data from Derive.xyz, allowing users to query currencies, instruments, tickers, and historical price information. This server enables access to real-time and historical financial data through the Derive public REST API with no authentication required.
An MCP (Model Context Protocol) server that provides market data from Derive.xyz (formerly Lyra Finance). All endpoints are public — no authentication required.
| Tool | Description |
|---|---|
get_all_currencies |
List all available currencies |
get_currency |
Details for a specific currency |
get_all_instruments |
List instruments (options, perps, ERC20) |
get_instrument |
Details for a specific instrument |
get_ticker |
Current price, volume, bid/ask for an instrument |
get_tickers |
Tickers for all instruments of a given type |
get_spot_feed_history |
Historical spot prices |
get_spot_feed_history_candles |
OHLC candlestick data |
get_funding_rate_history |
Perpetual funding rate history |
get_interest_rate_history |
Borrowing interest rate history |
get_option_settlement_history |
Option settlement history |
get_latest_signed_feeds |
Current oracle price feeds |
get_liquidation_history |
Liquidation events |
get_margin |
Margin requirement simulation |
get_statistics |
Platform volume and open interest stats |
git clone https://github.com/aadarshvelu/derive-mcp.git
cd derive-mcp
npm install
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"derive": {
"command": "node",
"args": ["/path/to/derive-mcp/server.mjs"]
}
}
}
Restart Claude Desktop. The 15 market data tools will be available.
Add to your project's .mcp.json:
{
"mcpServers": {
"derive": {
"command": "node",
"args": ["/path/to/derive-mcp/server.mjs"]
}
}
}
Or run directly:
claude mcp add derive node /path/to/derive-mcp/server.mjs
npx @modelcontextprotocol/inspector node server.mjs
node test-mcp.mjs
Runs 16 tests against the live Derive API (15 tool calls + tool listing).
All tools call the Derive public REST API at https://api.lyra.finance. No API keys or authentication needed.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"derive-mcp-server": {
"command": "npx",
"args": []
}
}
}PRs, issues, code search, CI status
Database, auth and storage
Reference / test server with prompts, resources, and tools.
Secure file operations with configurable access controls.