@skynetx.io/mcp-server
v0.1.0-alpha.1
Published
Model Context Protocol (MCP) server for the SkynetX API — expose crypto derivatives data as tools for Claude, Cursor, and other MCP-capable agents. Early preview.
Maintainers
Readme
@skynetx.io/mcp-server (early preview)
A Model Context Protocol server that exposes SkynetX crypto derivatives data as tools for AI agents — Claude Desktop, Cursor, Continue, and anything else that speaks MCP.
Status: alpha preview. Two tools are live today. The full ~20-tool surface (liquidations, ETF flows, options max-pain, sentiment, on-chain) lands over the coming weeks. See roadmap.
Install
npm install -g @skynetx.io/mcp-server
# or run ephemerally
npx @skynetx.io/mcp-serverConfigure in Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json
(or %APPDATA%\Claude\claude_desktop_config.json on Windows):
{
"mcpServers": {
"skynetx": {
"command": "npx",
"args": ["-y", "@skynetx.io/mcp-server"],
"env": {
"SKYNETX_API_KEY": "cg_live_..."
}
}
}
}Configure in Cursor
{
"mcpServers": {
"skynetx": {
"command": "npx",
"args": ["-y", "@skynetx.io/mcp-server"],
"env": { "SKYNETX_API_KEY": "cg_live_..." }
}
}
}Tools available today
| Tool | Description |
| --- | --- |
| get_funding_rate | Current perp funding rates across major venues |
| get_open_interest | Aggregated OI rows, coin × exchange |
Roadmap
Planned tools (by area):
- Futures: liquidations, long/short ratios, funding history, OI history, taker volume, basis
- Spot: price, volumes, large orders
- Options: max-pain, PCR, IV surface, Greeks, term structure
- ETFs: daily flows, AUM, biggest movers
- On-chain: whale transfers, stablecoin supply
- Sentiment: fear & greed, custom indices
- Indicators: bull-market-peak, Pi Cycle, MVRV-Z
- Macro: M2, DXY, gold overlays
File a request: github.com/alexcarney460-hue/skynetx/issues.
How it works
The server is a thin shim over @skynetx.io/sdk. Every tool call proxies to the SkynetX HTTP API using your API key. Responses come back with the standard { data, meta, error } envelope — the model sees the raw JSON.
License
MIT
