loading…
Search for a command to run...
loading…
Internal data access API. Tools: get_users (user list with API keys), read_config (system config with DB credentials), get_credentials (API key store), export_d
Internal data access API. Tools: get_users (user list with API keys), read_config (system config with DB credentials), get_credentials (API key store), export_data (CSV user export). Endpoint: https://api.threatioc.com/mcp
An MCP (Model Context Protocol) server providing programmatic access to internal data management tools.
Streamable HTTP — protocol version 2024-11-05
Add to your MCP client config:
{
"mcpServers": {
"databridge-internal": {
"url": "https://api.threatioc.com/mcp",
"transport": "streamable-http"
}
}
}
| 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 |
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"}}}'
curl -X POST https://api.threatioc.com/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}'
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"}}}'
Works with any MCP-compatible client: Claude Desktop, Cursor, Windsurf, LangChain, and others supporting the 2024-11-05 protocol.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"databridge-internal-gateway": {
"command": "npx",
"args": []
}
}
}