# MCP client configs signaldaemon is a remote MCP server over **Streamable HTTP**, authenticated with the `x-api-key` header. Get a key: `curl -s -X POST https://api.signaldaemon.com/v1/request-key`. ## Claude Code ```bash claude mcp add --transport http signaldaemon \ https://api.signaldaemon.com/mcp --header "x-api-key: " ``` ## Cursor / Cline (`mcp.json`) ```json { "mcpServers": { "signaldaemon": { "url": "https://api.signaldaemon.com/mcp", "headers": { "x-api-key": "" } } } } ``` ## Hermes Agent (`~/.hermes/config.yaml`) ```yaml mcp_servers: signaldaemon: url: "https://api.signaldaemon.com/mcp" headers: x-api-key: "" ``` ## Tools - `get_market_narratives(limit)` — the day's ranked narratives + signals + market snapshot. - `get_clean_feed(query, category?, limit)` — clean narrative feed for a topic. Both are annotated `readOnlyHint` / `openWorldHint` (safe, read-only, external data).