CB Insights' MCP Server
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"cbi-mcp-server": {
"args": [
"--directory",
"/path/to/cloned/cbi-mcp-server",
"run",
"server.py"
],
"command": "/path/to/.local/bin/uv"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Deprecation notice: This repository, serving as an example implementation of a simple self-hosted MCP server that acts as a pass-through to the CB Insights API, is deprecated as of January 2026. CB Insights is pleased to offer a fully supported MCP server at mcp.cbinsights.com, which can be invoked programmatically or through clients like ChatGPT, Claude, and Microsoft Copilot.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in data / finance
Query and manage PostgreSQL databases directly from AI assistants
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
Manage Supabase projects — databases, auth, storage, and edge functions
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
MCP Security Weekly
Get CVE alerts and security updates for Cbi Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Deprecation notice: This repository, serving as an example implementation of a simple self-hosted MCP server that acts as a pass-through to the CB Insights API, is deprecated as of January 2026. CB Insights is pleased to offer a fully supported MCP server at mcp.cbinsights.com, which can be invoked programmatically or through clients like ChatGPT, Claude, and Microsoft Copilot.
The CBI MCP Server provides an interface for developers to interact with CB Insights ChatCBI LLM through AI Agents.
Send a message from an agent to ChatCBI and return the response.
message: The content of your message to ChatCBIchatID(optional): A unique identifier for the chat session, obtained from a previous response. If included, the conversation is continued. Otherwise, a new conversation is started.chatID: Identifies the conversation. If chatID was provided in the request, this will be the same.message: ChatCBI response to the message.relatedContent: List of related references.sources: List of sources used to generate the response.suggestions: List of suggested follow-up questions.title: Title of the chatThe CBI MCP Server uses uv to manage the project.
Environment variables are set via the .env file:
CBI_CLIENT_ID & CBI_CLIENT_SECRET OAuth Client ID and Secret
CBI_MCP_TIMEOUT (default: 120)CBI_MCP_PORT (default: 8000)Update the claude_desktop_config.json file using the following command:
mcp install server.py
This will add the following configuration:
{
"mcpServers": {
"cbi-mcp-server": {
"command": "/path/to/.local/bin/uv",
"args": [
"--directory",
"/path/to/cloned/cbi-mcp-server",
"run",
"server.py"
]
}
}
}
The inspector can be used to test/debug your server.
mcp dev server.py