Data & MCP
Connect the MCP to Claude & other clients
Connecting the BigIdeasDB MCP takes three moves: generate credentials in the dashboard, add the hosted server URL to your AI client, and start prompting. The same hosted endpoint works across every compatible client, so the setup is nearly identical wherever you connect.
Last updated: July 9, 2026
Quick answer
Generate MCP credentials from the dashboard (Pro required), add the server URL https://bigideasdb.com/api/mcp/bigideasdb-mcp to your client with your token, and start prompting.
- Generate credentials in the BigIdeasDB dashboard (Pro required).
- Add the server URL and your bearer token to your client.
- Works with Claude, ChatGPT, Cursor, VS Code, and more.
On this page
Generate your credentials
MCP credentials are generated from the BigIdeasDB dashboard and require a Pro membership. Generate a token and keep it somewhere safe, because you will paste it into your client's config. The server URL is the same everywhere; only your token is unique to you.
https://bigideasdb.com/api/mcp/bigideasdb-mcp
Treat your token like a password
Your bearer token authenticates every request against your account and its rate limits. Do not commit it to a public repo or paste it into shared configs. If it leaks, regenerate it from the dashboard.
The universal config
Most clients accept a hosted MCP server over HTTP with a JSON config like this. Replace YOUR_TOKEN with the credential you generated in the dashboard. Wherever a client uses a JSON MCP config file, this is the shape you paste in.
{"mcpServers": {"bigideasdb": {"url": "https://bigideasdb.com/api/mcp/bigideasdb-mcp","headers": { "Authorization": "Bearer YOUR_TOKEN" }}}}
Same URL everywhere
Whether you connect Claude Desktop, Cursor, or VS Code, the server URL is identical. Only the location of the MCP config file changes between clients.
Claude Code and Claude Desktop
In Claude Code you can add the hosted server from the command line, giving it a name, the URL, and an Authorization header. After adding it, reload so the tools register.
claude mcp add --transport http bigideasdb \https://bigideasdb.com/api/mcp/bigideasdb-mcp \--header "Authorization: Bearer YOUR_TOKEN"
Claude Desktop reads its servers from the app's configuration file. Add the bigideasdb entry to the mcpServers object and restart the app so it picks up the change.
{"mcpServers": {"bigideasdb": {"url": "https://bigideasdb.com/api/mcp/bigideasdb-mcp","headers": { "Authorization": "Bearer YOUR_TOKEN" }}}}
Restart to register tools
Claude Desktop only loads MCP servers at startup. If the bigideasdb tools do not appear after editing the config, fully quit and reopen the app.
Cursor, VS Code, and Windsurf
Editor-based clients expose MCP through a settings pane or a JSON file in the project or user directory. Cursor and Windsurf both accept the same server object; add it in the MCP settings and reload the editor.
{"mcpServers": {"bigideasdb": {"url": "https://bigideasdb.com/api/mcp/bigideasdb-mcp","headers": { "Authorization": "Bearer YOUR_TOKEN" }}}}
VS Code with GitHub Copilot registers hosted MCP servers in its own MCP configuration. The server object uses the same URL and header; after adding it, reload the window so the bigideasdb tools become available to the chat.
{"servers": {"bigideasdb": {"type": "http","url": "https://bigideasdb.com/api/mcp/bigideasdb-mcp","headers": { "Authorization": "Bearer YOUR_TOKEN" }}}}
ChatGPT and other clients
ChatGPT connects to hosted MCP servers as a connector. Point it at the server URL and supply your token as a bearer credential in the Authorization header. The same pattern applies to any other client that speaks hosted MCP over HTTP, including Codex, JetBrains AI, and Replit.
- Server name - bigideasdb (any label you like).
- Server URL - https://bigideasdb.com/api/mcp/bigideasdb-mcp
- Authentication - Authorization header, value Bearer YOUR_TOKEN.
Command-line add
Clients that accept an add command take the same URL and header. The pattern is a name, the server URL, and an Authorization bearer header.
name: bigideasdburl: https://bigideasdb.com/api/mcp/bigideasdb-mcpheader: Authorization: Bearer YOUR_TOKEN
For the full list of confirmed clients and the account-wide rate limits, see Rate limits and supported clients.
Verify the connection
After adding the server, restart or reload your client and confirm the bigideasdb tools appear. Then try a prompt like "search Reddit for complaints about invoicing software." If tools do not appear, double-check the token and the server URL, or see Help.
Good first prompts that exercise different sources so you know the connection is healthy:
"Search Reddit for people frustrated with scheduling apps.""Show me Capterra feature gaps for project management software.""How many companies are live on Stripe in the invoicing category?"
If a prompt returns a sourced answer, the connection is working and the model is calling the tools. Because a single prompt can trigger several tool calls, keep an eye on volume during heavy sessions - the limits are shared across every client you connect.
Troubleshooting
- Tools missing - confirm you fully reloaded or restarted the client after editing the config.
- Auth errors - check the Authorization header reads Bearer followed by your token, with a single space.
- Wrong URL - the server URL must be exactly https://bigideasdb.com/api/mcp/bigideasdb-mcp with no trailing path.
- Still failing - regenerate the token in the dashboard and paste the new value in.
One prompt can be several requests
Each tool call counts against your account's limits of 1,000 requests per day and 100 per minute. If verification prompts start failing under heavy use, you may be hitting the ceiling rather than a config problem.
Managing your token across clients
One token works everywhere, so you do not need a separate credential per client. If you research from Claude Code during the day and switch to Cursor or ChatGPT later, paste the same bearer token into each and they all authenticate against the same account. That keeps setup simple, but it also means every connected client draws down one shared pool of requests.
When you regenerate a token in the dashboard, the previous value stops working immediately. After rotating it, update the Authorization header in each client you have configured, then reload so the new credential takes effect. Storing the token in an environment variable rather than a committed config file makes rotation painless and keeps it out of version control.
Rotate on any leak
If a token ever lands in a shared config, a screenshot, or a public repository, regenerate it from the dashboard right away. Regeneration invalidates the old token, so a leaked value cannot keep spending your account's requests.
The account-wide limits that every client shares are covered in full on Rate limits and supported clients.
Frequently asked questions
Where do I get the token to put in the config?
Generate it from the BigIdeasDB dashboard. Credential generation requires a Pro membership. Paste the token into the Authorization bearer header of your client's MCP config.
Does the setup differ between Claude, Cursor, and VS Code?
The server URL is the same everywhere. Only the location of the MCP config file or settings differs between clients - the URL and bearer token stay identical. Claude Code takes a command-line add, Claude Desktop and the editors take a JSON server object.
The tools are not showing up. What should I check?
Confirm the server URL is exactly https://bigideasdb.com/api/mcp/bigideasdb-mcp, that the Authorization header reads Bearer followed by your token, and that you fully reloaded or restarted the client after editing the config. If it still fails, regenerate the token in the dashboard and try again.
Can I connect more than one client with the same token?
Yes. The same credential works across every compatible client. Keep in mind that all clients share your account's rate limits of 1,000 requests per day and 100 per minute.
Which clients are supported?
Any client that speaks hosted MCP over HTTP works. Confirmed clients include Claude Code, Claude Desktop, ChatGPT, Cursor, VS Code (GitHub Copilot), Codex, Windsurf, JetBrains AI, and Replit. See the rate limits and supported clients page for the full list.
Do I need to install anything to connect?
No. The MCP is hosted, so there is no package to install or process to run. You only add the server URL and your token to whichever client you use, then reload it.
Was this page helpful?
Related articles
Data & MCP
What is the BigIdeasDB MCP
The BigIdeasDB MCP is a hosted Model Context Protocol server exposing 30 tools across 11 data sources - a drop-in Reddit API alternative with no PRAW, OAuth, or API keys.
Data & MCP
Rate limits & supported clients
BigIdeasDB MCP rate limits (1,000 requests/day, 100/minute) and the full list of compatible AI clients, from Claude and ChatGPT to Cursor, VS Code, and Windsurf.
Data & MCP
MCP tools reference (30 tools)
The full list of all 30 BigIdeasDB MCP tools, grouped by their 11 data sources - Reddit, pain points, Capterra, G2, app reviews, Upwork, revenue, funding, Stripe, and SellSide.