Please Log In
You need to log in to access your API credentials for MCP integration. Start with our free trial!
Log In & Start Free TrialNyne MCP Server
Connect AI assistants like ChatGPT and Claude directly to Nyne's people data workflows using the Model Context Protocol (MCP).
Model Context Protocol (MCP) is an open standard that enables AI assistants to securely connect to external data sources and tools. Think of it as a universal plugin system for AI.
The hosted Nyne MCP Server brings Nyne's common people search and enrichment workflows directly into your AI assistant conversations. Ask questions in natural language, and get instant access to:
🔍 People Search
Semantic search across millions of profiles by company, role, location, or keywords. Build targeted contact lists instantly.
👤 Profile Enrichment
Get comprehensive person profiles with contact information, work history, education, and social profiles.
🤖 AI-Powered Insights
Ask natural language questions about profiles and get intelligent analysis powered by Nyne's data.
Why Use Nyne MCP?
⚡ Instant Access
No code required. Connect once and query Nyne data directly from ChatGPT or Claude conversations.
🔒 Secure
Uses your existing Nyne API credentials. All requests are authenticated and logged for security.
💬 Natural Language
Ask questions in plain English. The AI assistant handles the technical details.
🎯 Accurate
Get real-time data from Nyne's people intelligence workflows without writing integration code.
📊 Comprehensive
For full HTTP API coverage, start with llms.txt and the agent manifest. The hosted MCP is a curated subset.
💰 Cost-Effective
Uses your existing Nyne subscription and credit balance. No additional fees.
Coverage
The hosted MCP currently exposes a curated subset of Nyne workflows: people search, person profile fetch/enrichment, and profile Q&A. If an agent needs the broader endpoint surface, use the HTTP API docs via llms.txt and the agent manifest, then load the endpoint's markdown page.
Available Tools
search_people_semantic
- Search by company name and role
- Filter by geography and keywords
- Up to 100 results per query
- Requires 'search' product access
- 4 credits per result
"Find software engineers at Google in San Francisco"
get_person_profile
- Lookup by email, phone, or social URL
- Comprehensive contact information
- Work history and education
- Social media profiles
- Requires 'enrichment' product access
- 6 credits per profile
"Get the profile for john@example.com"
ask_profile
- Natural language Q&A
- AI-powered analysis
- Context-aware answers
- Synthesizes multiple data points
- Requires 'enrichment' product access
- 6 credits per query
"What is this person's current role and experience?"
How to Get Started
-
Get Your API Credentials
Log in to your Nyne account and navigate to Settings → API Keys. If you don't have an API key yet, create one with access to Search and/or Enrichment products.You need an active Nyne subscription with Search or Enrichment products to use MCP tools. -
Choose Your AI Assistant
Nyne MCP works with any MCP-compatible AI assistant. See integration guides below for ChatGPT and Claude Desktop. -
Connect to Nyne
Configure your AI assistant with the Nyne MCP endpoint and your API credentials. -
Start Asking Questions
Simply ask your AI assistant to search for people or get profile information. The assistant will automatically use Nyne MCP tools.
Integration Guides
ChatGPT (OpenAI)
- Open ChatGPT and go to Settings → Integrations
- Click Add MCP Server
- Enter the Nyne MCP endpoint:
https://api.nyne.ai/mcp
- When prompted for authentication, choose OAuth (recommended). The flow uses:
Authorization URL: https://api.nyne.ai/mcp/oauth/authorize Token URL: https://api.nyne.ai/mcp/oauth/token
- If OAuth is not available, select No authentication to allow discovery. For tool execution, choose Bearer token and paste your Nyne API Key as the token (or use headers:
X-API-Key/X-API-Secret). - Click Save. ChatGPT will discover Nyne tools from the manifest.
Claude Desktop
- Open or create the MCP configuration file at
~/.claude/mcp.json - Add Nyne to your configuration:
{ "mcpServers": { "nyne": { "url": "https://api.nyne.ai/mcp", "headers": { "X-API-Key": "your_nyne_api_key", "X-API-Secret": "your_nyne_api_secret" } } } }
- Restart Claude Desktop. Nyne tools will now be available.
Other MCP Clients
Any MCP-compatible client can connect to Nyne. Use these details:
- Discovery Endpoint:
https://api.nyne.ai/.well-known/mcp - MCP Endpoint:
https://api.nyne.ai/mcp - Authentication: OAuth2 (recommended) via
/mcp/oauth/authorizeand/mcp/oauth/token; or Bearer token (paste Nyne API Key); or headersX-API-Key+X-API-Secret
Example Queries
Once connected, you can ask your AI assistant questions like:
People Search
- "Find product managers at Stripe in San Francisco"
- "Show me software engineers who worked at Facebook"
- "Search for VPs of Sales in the healthcare industry"
- "Find people with 'machine learning' experience at Google"
Profile Enrichment
- "Get the profile for jane.smith@company.com"
- "Find contact information for the person at linkedin.com/in/johndoe"
- "Enrich this phone number: (415) 555-1234"
AI-Powered Insights
- "What is this person's current job title?"
- "Does this person have experience in B2B sales?"
- "What companies has this person worked for?"
- "What is this person's educational background?"
Pricing & Usage
Nyne MCP uses your existing Nyne subscription and credit balance. MCP tools use the same credit costs as the REST API:
| Tool | Credit Action | Cost | Required Product |
|---|---|---|---|
| search_people_semantic | person_search | 4 credits per result | Search |
| get_person_profile | person_enrichment | 6 credits per profile | Enrichment |
| ask_profile | person_enrichment | 6 credits per query | Enrichment |
Async Processing & Polling
MCP tools use asynchronous processing (same infrastructure as the REST API):
-
Initial Request
POST to/mcp/invokereturns immediately with HTTP 202 and arequest_id -
Poll for Results
UseGET /mcp/status?request_id=xxxto check progressPoll every 2-3 seconds until status is 'completed' or 'failed'. Maximum processing time is 5 minutes. -
Get Results
When status is 'completed', the response includes full results
Example Polling Flow
Security & Privacy
Nyne takes security seriously. Here's how we protect your data:
Authentication
All requests require valid API credentials
Encryption
All data is transmitted over HTTPS/TLS
Access Control
Each API key is tied to a specific user and subscription
Audit Logging
All MCP requests are logged for security and compliance
Rate Limiting
Automatic rate limiting prevents abuse
Product-Based Access
Tools are only available if your subscription includes the required product
Need Help?
Our support team is here to help you integrate and use MCP effectively.
Email Support: support@nyne.com
Sales: sales@nyne.ai
Quick Start Guide: MCP Quick Start
API Documentation: API Docs