orca-ai-mcp
Integrates with Orca AI's HUNT Platform API to search for information about people, companies, and entities, enabling AI assistants to access investigative intelligence and due diligence data.
README
Orca AI MCP Server
A Model Context Protocol (MCP) server that integrates with Orca AI's HUNT Platform API for finding information about people, companies, and other entities.
About Orca AI
Orca AI is a leading provider of investigative intelligence and due diligence solutions. The HUNT platform provides access to comprehensive datasets for person and entity research across multiple authoritative sources.
This MCP server connects to the Orca AI API to enable AI assistants to search and retrieve information from the HUNT platform directly within their workflows.
Features
- Dynamic Configuration: Directory-based configuration using local
.orcaai.jsonfiles - HUNT API Integration: Search across authoritative datasets for people, companies, and entities
- Flexible Authentication: API key-based authentication with environment variable fallback
- Context-Aware: Automatically detects and switches between different configurations
- Robust Error Handling: Built-in retry logic with exponential backoff
Installation
Claude Desktop
Add to your Claude Desktop MCP configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%/Claude/claude_desktop_config.json on Windows):
{
"mcpServers": {
"orca-ai": {
"command": "node",
"args": ["dist/index.js"],
"env": {
"ORCA_API_TOKEN": "your-orca-ai-api-key"
}
}
}
}
Claude Code (CLI)
Add to your ~/.config/claude-code/mcp_servers.json:
{
"mcpServers": {
"orca-ai": {
"command": "node",
"args": ["dist/index.js"],
"env": {
"ORCA_API_TOKEN": "your-orca-ai-api-key"
}
}
}
}
Gemini CLI
Add to your ~/.gemini/settings.json or project .gemini/settings.json:
{
"mcpServers": {
"orca-ai-mcp": {
"command": "node",
"args": ["dist/index.js"],
"env": {
"ORCA_API_TOKEN": "your-orca-ai-api-key"
},
"timeout": 30000,
"trust": false,
"includeTools": ["detect_orca_context", "get_hunt_results"]
}
}
}
Cursor CLI
Add to your MCP configuration file:
{
"mcpServers": {
"orca-ai": {
"command": "node",
"args": ["dist/index.js"],
"env": {
"ORCA_API_TOKEN": "your-orca-ai-api-key"
}
}
}
}
Development Setup
cd orca-ai-mcp
npm install
npm run build
Configuration
Local Configuration (Recommended)
Create a .orcaai.json file in your working directory:
{
"apiUrl": "https://api.orcaai.io",
"apiToken": "your-orca-ai-api-key-here",
"settings": {
"timeout": 30000,
"retries": 3
},
"tools": {
"hunt": true
}
}
Environment Variables
Alternatively, use environment variables:
export ORCA_API_TOKEN="your-orca-ai-api-key"
export ORCA_API_URL="https://api.orcaai.io"
export ORCA_TIMEOUT="30000"
export ORCA_RETRIES="3"
export ORCA_TOOLS_HUNT="true"
Available Tools
HUNT Search
get_hunt_results: Search across datasets for people, companies, and entities- Required:
query- Search string (person name, company name, etc.) - Optional:
nextToken- Pagination token for subsequent pages (v0.2 API)
- Required:
Context Detection
detect_orca_context: Detect current configuration and verify API connectivity
Authentication
This MCP server requires an Orca AI API key:
- API Key Format: 40 alphanumeric characters
- Header Used:
x-api-key - Endpoint:
https://api.orcaai.io
API Endpoints Used
- v0.2 HUNT API:
POST /v0.2/hunt(default, supports pagination, max 100 results per page)
Usage Examples
Basic Person Search
// Search for a person
const results = await callTool("get_hunt_results", {
query: "Vladimir Putin"
});
Company Search
// Search for a company
const results = await callTool("get_hunt_results", {
query: "Microsoft Corporation"
});
Paginated Search
// Get first page
const page1 = await callTool("get_hunt_results", {
query: "John Smith"
});
// Get next page using returned token
const page2 = await callTool("get_hunt_results", {
query: "John Smith",
nextToken: "returned-token-from-page1"
});
Configuration Check
// Verify your configuration
const context = await callTool("detect_orca_context");
Response Format
HUNT search results include:
- query: Original search query
- nextToken: Pagination token (v0.2 only)
- huntDocuments: Array of matching records containing:
primaryName: Main identified namenames: Array of alternative namesdataset: Source dataset informationrawData: Unstructured text about the recordvalues: Array of relevant values/attributestabularData: Structured data fields
Development
Available Scripts
npm run dev- Start development server with hot reloadnpm run build- Build the projectnpm run start- Start the built servernpm run test- Run testsnpm run type-check- Check TypeScript typesnpm run clean- Clean build directory
Testing the Server
# Build and start the server
npm run build
npm start
# In another terminal, test with Claude Code
# The server runs on stdio and communicates via MCP protocol
How to Start and Use
Step 1: Configure Your API Key
# Copy the example configuration
cp .orcaai.json.example .orcaai.json
# Edit .orcaai.json and add your API key
Step 2: Build the Server
npm run build
Step 3: Configure Claude Code
Add the server to your Claude Code MCP configuration:
{
"mcpServers": {
"orca-ai": {
"command": "node",
"args": ["dist/index.js"]
}
}
}
Step 4: Restart Claude Code
Restart Claude Code to load the MCP server.
Step 5: Use the Tools
Ask Claude Code to:
- "Search for information about [person/company] using Orca AI"
- "Check my Orca AI configuration"
- "Search the HUNT platform for [query]"
Error Handling
The server handles common API errors:
- 401 Unauthorized: Invalid or missing API key
- 400 Bad Request: Invalid query parameters
- 429 Rate Limited: Too many requests
- 5xx Server Errors: Automatic retry with exponential backoff
Directory Structure
orca-ai-mcp/
├── src/
│ └── index.ts # Main MCP server implementation
├── dist/ # Built JavaScript files
├── tests/ # Test files
├── .orcaai.json.example # Configuration example
├── .orcaai.json # Your actual config (gitignored)
├── package.json # Dependencies and scripts
├── tsconfig.json # TypeScript configuration
└── README.md # This file
Contributing
- Fork the repository
- Create a feature branch
- Make your changes with proper comments
- Ensure the build passes:
npm run build - Test your changes
- Submit a pull request
License
MIT License
Support
For issues and questions:
- Check the Orca AI API documentation
- Create an issue on GitHub
- Review existing issues for similar problems
Troubleshooting
Common Issues
-
"No configuration found"
- Ensure
.orcaai.jsonexists with valid API key - Check environment variables are set correctly
- Ensure
-
"Authentication failed"
- Verify your API key is 40 characters and valid
- Ensure no extra spaces in configuration
-
"Rate limit exceeded"
- Wait before making another request
- Consider implementing delays between requests
-
Server not starting
- Run
npm run buildfirst - Check Node.js version (requires 18+)
- Verify all dependencies installed:
npm install
- Run
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。