Connect your client
Point any MCP client at the endpoint with your key. Here are the three most common.
Claude Code
One command in your terminal:
claude mcp add --transport http redditoro \
https://redditoro.com/api/mcp \
--header "Authorization: Bearer sbk_YOUR_KEY"Then ask Claude things like "find the best subreddits for my product" or "run a scan and show me the new leads".
Claude Desktop
Claude Desktop connects to remote servers through the mcp-remote bridge. Open Settings → Developer → Edit Config and add Redditoro to mcpServers, then restart the app:
{
"mcpServers": {
"redditoro": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://redditoro.com/api/mcp",
"--header", "Authorization: Bearer sbk_YOUR_KEY"
]
}
}
}Cursor
Cursor supports remote MCP servers with headers natively. Add this to ~/.cursor/mcp.json (or a project's .cursor/mcp.json):
{
"mcpServers": {
"redditoro": {
"url": "https://redditoro.com/api/mcp",
"headers": {
"Authorization": "Bearer sbk_YOUR_KEY"
}
}
}
}Any other client
Any MCP-capable client works: give it the endpoint https://redditoro.com/api/mcp and the Authorization: Bearer header with your key.