One URL, one key, six tools. Your assistant reads 112,000+ tracked infopreneurs, their advertising and the funnels behind it, and answers in conversation instead of sending you back to a dashboard.
claude mcp add --transport http launchspy https://launchspy.io/api/mcp \
--header "Authorization: Bearer lsk_your_key"Anything that speaks MCP over HTTP connects. The key travels in a header, so any client that lets you set one will work, including from a browser: the endpoint sends CORS headers.
{
"mcpServers": {
"launchspy": {
"command": "npx",
"args": [
"-y", "mcp-remote", "https://launchspy.io/api/mcp",
"--header", "Authorization: Bearer lsk_your_key"
]
}
}
}client.responses.create(
model="gpt-5",
tools=[{
"type": "mcp",
"server_label": "launchspy",
"server_url": "https://launchspy.io/api/mcp",
"headers": {"Authorization": "Bearer lsk_your_key"},
}],
input="Which coaching funnels are scaling in the US?",
)URL https://launchspy.io/api/mcp
Method POST · JSON-RPC 2.0
Header Authorization: Bearer lsk_your_key
(or X-API-Key: lsk_your_key)curl -X POST https://launchspy.io/api/mcp \
-H "Authorization: Bearer lsk_your_key" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'A plain GET on the endpoint returns the whole contract as JSON: protocol versions, how to authenticate and the tool list. Handy when you are wiring a client you have not used before.
Consumer connectors never ask for one: they sign you in instead. Paste the same URL as a custom connector and the sign-in screen comes to you. Approve once, and the connection runs on your own credits. Revoke it whenever you like from Settings.
https://launchspy.io/api/mcpsearch_creatorsFind who operates in a marketNiche, country, language, platform, ad volume, follower count.get_creatorOne creator in fullPlatforms, socials, total and active ads, 30-day launch cadence.search_adsThe creative itselfHeadline, body copy, CTA, media, placement, run dates, EU reach.search_funnelsTracked funnelsDomain, landing URL, funnel type, the builder it runs on, ad volume.get_funnelThe X-Ray teardownSteps, tracking pixels, payment stack, extracted pricing, scarcity signals.analyze_urlWhat we already know about a domainFunnels tracked on it, the creators behind them, the builder, ad volume.The MCP server and the REST API are included with Pro and Business. Issue a key from Settings, paste it into your client, done. One credit is one tool call, the same counter covers both surfaces, and annual billing doubles it.