Crunchbase MCP Server
Crunchbase MCP 服务器
一个模型上下文协议 (MCP) 服务器,为 AI 助手提供 Crunchbase 数据的访问权限。该服务器允许 AI 助手从 Crunchbase 搜索公司,获取公司详情、融资信息、收购信息和人员数据。
特征
根据各种标准搜索公司
获取特定公司的详细信息
检索公司融资轮次
获取采集数据
搜索与公司相关的人员
Related MCP server: Coin MCP Server
先决条件
Node.js(v16 或更高版本)
Crunchbase API 密钥
安装
克隆存储库:
git clone https://github.com/Cyreslab-AI/crunchbase-mcp-server.git
cd crunchbase-mcp-server安装依赖项:
npm install构建项目:
npm run build配置
该服务器需要 Crunchbase API 密钥才能运行。您可以通过注册Crunchbase API来获取 API 密钥。
设置 API 密钥
将 API 密钥设置为环境变量:
export CRUNCHBASE_API_KEY=your_api_key_hereMCP 配置
您可以使用附带的安装脚本自动配置 MCP 服务器:
# Build the project first
npm run build
# Run the setup script
npm run setup安装脚本将:
索取您的 Crunchbase API 密钥
找到您的 MCP 设置文件(或创建一个新的)
将 Crunchbase MCP 服务器添加到您的设置中
或者,您可以手动将其添加到您的 MCP 配置文件中:
{
"mcpServers": {
"crunchbase": {
"command": "node",
"args": ["/path/to/crunchbase-mcp-server/build/index.js"],
"env": {
"CRUNCHBASE_API_KEY": "your_api_key_here"
},
"disabled": false,
"autoApprove": []
}
}
}用法
运行服务器
启动服务器:
npm start对于自动重新加载的开发:
npm run dev可用工具
该服务器公开以下工具:
search_companies - 根据各种标准搜索公司
参数:
query(可选):搜索查询(例如公司名称、描述)location(可选):按位置过滤(例如“旧金山”、“纽约”)category(可选):按类别过滤(例如“人工智能”、“金融科技”)founded_after(可选):按成立日期过滤(YYYY-MM-DD)founded_before(可选):按成立日期过滤(YYYY-MM-DD)status(可选):按公司状态过滤(例如“活跃”、“关闭”)limit(可选):返回的最大结果数(默认值:10)
get_company_details - 获取特定公司的详细信息
参数:
name_or_id(必填):公司名称或UUID
get_funding_rounds - 获取特定公司的融资轮次
参数:
company_name_or_id(必填):公司名称或 UUIDlimit(可选):返回的最大结果数(默认值:10)
get_acquisitions - 获取特定公司进行的收购
参数:
company_name_or_id(可选):公司名称或 UUIDlimit(可选):返回的最大结果数(默认值:10)
search_people - 根据各种条件搜索人员
参数:
query(可选):搜索查询(例如,人名)company(可选):按公司名称过滤title(可选):按职位过滤limit(可选):返回的最大结果数(默认值:10)
可用资源
服务器还公开以下资源:
热门公司- Crunchbase 上的热门公司列表
URI:
crunchbase://trending/companies
公司详情——有关特定公司的详细信息
URI 模板:
crunchbase://companies/{name}
公司融资轮次- 特定公司的融资轮次
URI 模板:
crunchbase://companies/{name}/funding
公司收购- 特定公司进行的收购
URI 模板:
crunchbase://companies/{name}/acquisitions
示例查询
以下是 AI 助手如何使用此 MCP 服务器的一些示例:
搜索旧金山的人工智能公司:
{
"query": "AI",
"location": "San Francisco",
"limit": 5
}获取特定公司的详细信息:
{
"name_or_id": "OpenAI"
}为公司获取融资轮次:
{
"company_name_or_id": "Anthropic"
}搜索科技公司的首席执行官:
{
"title": "CEO",
"limit": 10
}执照
麻省理工学院
接触
如有任何疑问或需要支持,请联系: contact@cyreslab.ai
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceAn MCP (Model Context Protocol) server that provides Google search capabilities and webpage content analysis tools. This server enables AI models to perform Google searches and analyze webpage content programmatically.59252ISC
- FlicenseNot gradedqualityFmaintenanceA Model Context Protocol server that provides access to CoinMarketCap's cryptocurrency data, enabling AI applications to retrieve cryptocurrency listings, quotes, and detailed information.37
- FlicenseBqualityDmaintenanceA Model Context Protocol server that allows AI assistants like Claude to directly query cryptocurrency and blockchain project data from RootData, including project information, organization details, and search results.36
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
MCP server for LeadDelta — manage LinkedIn connections and CRM data via AI assistants.
Remote MCP server to enrich company profiles with structured B2B data and confidence scores.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Cyreslab-AI/crunchbase-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server