Crunchbase MCP Server
크런치베이스 MCP 서버
AI 비서에게 Crunchbase 데이터 접근을 제공하는 모델 컨텍스트 프로토콜(MCP) 서버입니다. 이 서버를 통해 AI 비서는 Crunchbase에서 기업 검색, 기업 세부 정보, 자금 조달 정보, 인수 및 인사 데이터를 얻을 수 있습니다.
특징
다양한 기준에 따른 기업 검색
특정 회사에 대한 자세한 정보를 얻으세요
기업을 위한 자금 조달 라운드 검색
수집 데이터 가져오기
회사와 관련된 사람을 검색하세요
Related MCP server: Coin MCP Server
필수 조건
Node.js(v16 이상)
Crunchbase API 키
설치
저장소를 복제합니다.
지엑스피1
종속성 설치:
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 서버를 사용하는 방법에 대한 몇 가지 예는 다음과 같습니다.
샌프란시스코에서 AI 회사를 검색하세요:
{
"query": "AI",
"location": "San Francisco",
"limit": 5
}특정 회사에 대한 세부 정보를 얻으세요:
{
"name_or_id": "OpenAI"
}회사에 대한 자금 조달 라운드를 받으세요:
{
"company_name_or_id": "Anthropic"
}기술 회사의 CEO를 검색하세요:
{
"title": "CEO",
"limit": 10
}특허
MIT
연락하다
질문이나 지원이 필요하시면 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