Other
Any MCP-compatible client can connect to Danube using these settings:| Setting | Value |
|---|---|
| URL | https://danube.fastmcp.app/mcp |
| Transport | HTTP with SSE |
| Auth Header | danube-api-key |
Amazon Q IDE
Amazon Q Developer supports MCP for enhanced AI assistance.Amp (Sourcegraph)
Amp is Sourcegraph’s AI coding assistant with MCP support.Generic Configuration
For any other MCP client, use this standard configuration format:Stdio-Only Clients
If your MCP client only supports stdio transport (local servers), use themcp-remote npm package to bridge to Danube’s remote server.
mcp-remote package:
- Runs as a local stdio process
- Proxies requests to Danube’s remote HTTP/SSE server
- Handles authentication via the
--headerflag
Troubleshooting
Connection timeout
Connection timeout
- Test:
curl https://danube.fastmcp.app/health - Check firewall/VPN settings
- Ensure HTTPS port 443 is allowed
401 Unauthorized
401 Unauthorized
Client doesn't support HTTP transport
Client doesn't support HTTP transport
Use the
mcp-remote wrapper as shown in the “Stdio-Only Clients” section above.
This bridges stdio-based clients to Danube’s HTTP/SSE server.npx or mcp-remote errors
npx or mcp-remote errors
- Ensure Node.js 18+ is installed:
node --version - Clear the mcp-remote cache:
rm -rf ~/.mcp-auth - Try adding
-yflag to auto-accept npx installation