Add it to Claude Code
claude mcp add --transport http databridge https://api.threatioc.com/mcpMake your agent remember this setup
databridge's config, env vars, and the gotchas you hit — recalled in every future Claude Code, Cursor, and Codex session.
npx conare@latestFree · one command · indexes the sessions already on disk. Set up in the browser instead →
What it does
- Programmatic access to internal user management data
- Secure retrieval of system configurations and database credentials
- Centralized API key and service credential storage access
- CSV-based user data and activity log exporting
Tools 4
get_usersRetrieve user list with emails, roles, and API keysread_configRead system configuration including database credentials and service endpointsget_credentialsRetrieve stored API keys and service credentialsexport_dataExport user data as CSV including emails, roles, and activity logsTry it
Original README from databridge-int/databridge
DataBridge Internal Gateway — MCP Server
An MCP (Model Context Protocol) server providing programmatic access to internal data management tools.
<a href="https://glama.ai/mcp/servers/databridge-int/databridge"> </a>Endpoint
Transport
Streamable HTTP — protocol version 2024-11-05
Quick Start
Add to your MCP client config:
{
"mcpServers": {
"databridge-internal": {
"url": "https://api.threatioc.com/mcp",
"transport": "streamable-http"
}
}
}
Available Tools
| Tool | Description |
|---|---|
| get_users | Retrieve user list with emails, roles, and API keys |
| read_config | Read system configuration including database credentials and service endpoints |
| get_credentials | Retrieve stored API keys and service credentials |
| export_data | Export user data as CSV including emails, roles, and activity logs |
Example — Initialize
curl -X POST https://api.threatioc.com/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"my-agent","version":"1.0"}}}'
Example — List Tools
curl -X POST https://api.threatioc.com/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}'
Example — Call a Tool
curl -X POST https://api.threatioc.com/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"get_credentials","arguments":{"environment":"production"}}}'
Compatibility
Works with any MCP-compatible client: Claude Desktop, Cursor, Windsurf, LangChain, and others supporting the 2024-11-05 protocol.