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 Trial🚀 Nyne MCP Quick Start
Get up and running with Nyne MCP in 3 minutes.
What You'll Need
- A Nyne account with an active subscription
- API credentials (API Key + Secret)
- ChatGPT Plus/Pro or Claude Desktop (or any MCP client)
Agent Discovery Links
If an agent is integrating with Nyne without prior context, point it at the machine-readable docs before the HTML pages. That reduces bad endpoint selection and noisy HTML scraping.
The hosted MCP in this quickstart is a curated subset focused on common person search, enrichment, and profile-Q&A workflows. For broader endpoint coverage, use the manifest and endpoint markdown docs first.
Setup Steps
Option 1: ChatGPT Setup
- Open ChatGPT → Settings → Integrations
- Click "Add MCP Server"
- Enter URL:
https://api.nyne.ai/mcp
- For authentication, pick OAuth and complete Nyne login. The OAuth endpoints are:
Authorization URL: https://api.nyne.ai/mcp/oauth/authorize Token URL: https://api.nyne.ai/mcp/oauth/token
- If OAuth is unavailable, select No auth for discovery and then choose Bearer token and paste your Nyne API Key to enable tool calls.
- Save and test!
Option 2: Claude Desktop Setup
- Open/create:
~/.claude/mcp.json - Add this configuration:
{ "mcpServers": { "nyne": { "url": "https://api.nyne.ai/mcp", "headers": { "X-API-Key": "your_api_key", "X-API-Secret": "your_secret" } } } }
- Restart Claude Desktop
Test It Out
Try these example queries in your AI assistant:
Search for People
Get Profile Details
Ask AI Questions
Quick Reference
| What | Value |
|---|---|
| Discovery URL | https://api.nyne.ai/.well-known/mcp |
| MCP Endpoint | https://api.nyne.ai/mcp |
| Auth Method | OAuth2 (recommended) via /mcp/oauth • Bearer token (API Key) • X-API-Key + X-API-Secret |
| Protocol Version | 2024-11-01 |
Credits & Pricing
MCP uses the same credit costs as the REST API:
| Tool | Credit Action | Cost |
|---|---|---|
| search_people_semantic | person_search | 4 credits per result |
| get_person_profile | person_enrichment | 6 credits per profile |
| ask_profile | person_enrichment | 6 credits per query |
Async Processing
MCP tools process asynchronously (like the REST API):
- Tool invocation returns HTTP 202 with a
request_id - Poll
GET /mcp/status?request_id=xxxevery 2-3 seconds - When status is
completed, results are included in response
Need Help?
Full Documentation: MCP Documentation
Email Support: support@nyne.com
Manage API Keys: API Key Management
API Documentation: API Docs