Claude Code (Anthropic's CLI agent) supports MCP servers out of the box. Add any MCP server endpoint and Claude Code discovers available tools automatically during conversations.
This means your terminal-based AI agent can query databases, check dashboards, create tickets, and interact with any API you expose through an MCP server.
npm install -g @anthropic-ai/claude-code)Claude Code reads MCP server config from .mcp.json in your project root or ~/.claude/.mcp.json globally.
Create .mcp.json in your repo root:
{
"mcpServers": {
"your-app": {
"url": "https://datafaucet.dev/api/mcp/YOUR_SERVER_ID/sse"
}
}
}For servers you want available in every project:
{
"mcpServers": {
"stripe": {
"url": "https://datafaucet.dev/api/mcp/STRIPE_ID/sse"
},
"linear": {
"url": "https://datafaucet.dev/api/mcp/LINEAR_ID/sse"
}
}
}Start Claude Code in your project directory:
claudeAsk something that requires your connected tool:
Claude Code discovers tools from the MCP server and calls them inline. No extra prompting needed.
Claude Code supports both transport types:
| Transport | Config | Best for |
|---|---|---|
| SSE | "url": "https://..." | Hosted servers (DataFaucet, remote APIs) |
| stdio | "command": "npx", "args": [...] | Local servers (filesystem, databases) |
DataFaucet servers use SSE by default. No local process needed.
Add as many servers as you need. Claude Code connects to all of them and picks the right tool based on your question:
{
"mcpServers": {
"stripe": { "url": "https://datafaucet.dev/api/mcp/STRIPE_ID/sse" },
"jira": { "url": "https://datafaucet.dev/api/mcp/JIRA_ID/sse" },
"postgres": { "command": "npx", "args": ["@modelcontextprotocol/server-postgres", "postgresql://localhost/mydb"] }
}
}.mcp.jsonTotal setup: under 2 minutes from zero to Claude Code querying a new API.
Morning standup prep:
"Summarize what shipped yesterday in Linear, any failed payments in Stripe, and unread messages in the support channel."
Code review context:
"Pull the Jira ticket for this PR and summarize the requirements. Does my implementation match?"
Incident response:
"Check the last 5 error logs, query the affected customer's account in Stripe, and create a Linear ticket for the fix."
Server not connecting: Verify the URL is reachable with curl https://datafaucet.dev/api/mcp/YOUR_ID/sse. You should see an SSE stream open.
Tools not discovered: Restart Claude Code after editing .mcp.json. The config is read at startup.
Auth errors: DataFaucet servers handle auth internally (captured during browse session). No API keys needed in your config.
Create your Claude Code Docs MCP server in 60 seconds.
Try with Claude Code Docs →{
"mcpServers": {
"claude-code-docs": {
"url": "https://datafaucet.dev/api/mcp/YOUR_SERVER_ID/sse"
}
}
}Replace YOUR_SERVER_ID with the ID from your DataFaucet dashboard after creating your Claude Code Docs server.
Point DataFaucet at Claude Code Docs and get a working server in 60 seconds.
Create Claude Code Docs server free →After creating, add to Claude Desktop:
"claude-code-docs": {
"url": "https://datafaucet.dev/api/mcp/YOUR_ID/sse"
}Free plan includes 3 servers. Upgrade to Pro for unlimited →
A startup connected Stripe, Linear, Slack, Vercel, and PostHog to AI via MCP. Standup prep went from 15 minutes to one prompt.
Step-by-step guide to debugging MCP server connections. Fix SSE timeouts, tool discovery failures, auth errors, and protocol mismatches.
Top MCP servers for security teams: vulnerability scanners, SIEM dashboards, secrets management, compliance tools, and incident response via AI.
See how DataFaucet compares
Point at any URL. Get a working MCP server in 60 seconds. No API docs needed.
Works with ChatGPT, Claude, Cursor, Copilot, Windsurf, JetBrains, and any MCP client
Get notified when we add more AI integrations
Join 500+ builders. New templates, guides, and MCP tips. No spam.