Limited beta — the Skylit API is in limited beta. Create and manage keys in the Developer tab of the Skylit app.
You need two things: the endpoint and your API key.
Get a key from your account console, then pick your
client below.
Cursor
Add the server to~/.cursor/mcp.json (global) or .cursor/mcp.json in a
project:
Claude Desktop
Claude Desktop connects to remote MCP servers in one of two ways.- Custom Connector (recommended)
- Config file (mcp-remote)
In Settings → Connectors → Add custom connector, paste the endpoint:When prompted for authentication, provide your key as a bearer token. (Custom
connectors require a Claude plan that supports them.)
Try it
Once connected, ask a question that maps to a tool:Were there any unusual bullish sweeps on TSLA today?The agent will typically call
flow_search to confirm the ticker, then sweeps
(or unusual_volume) and summarize. Browse example prompts
for more.
Raw HTTP (for developers)
The server speaks standard MCP over streamable HTTP, so you can drive it directly. Initialize a session, list tools, then call one:Responses stream as
text/event-stream, so send an Accept header that includes
text/event-stream. The notifications/initialized call in step 2 is required —
skip it and tools/list comes back empty. Send DELETE with the Mcp-Session-Id
header to end a session. (Most MCP clients perform this handshake for you; it only
matters when driving the server by hand.)
