YourICP MCP Server
Enables AI assistants to enrich contacts and build audiences via the YourICP API. Provides tools to set an API token, submit contact lookups by email or LinkedIn URL, and poll for enrichment results.
README
YourICP MCP Server
The official, open-source Model Context Protocol (MCP) server for the YourICP contact-enrichment and audience-targeting API. It lets AI assistants such as Claude enrich contacts and build audiences directly from a conversation.
This is a reference implementation using the
stdiotransport, designed to run locally with clients like Claude Desktop. It authenticates with a plain API token — no payment, OAuth, or hosting infrastructure required. For the fully hosted remote connector (Streamable HTTP, OAuth 2.0 + PKCE, pay-per-use), see app.youricp.com.
Tools
| Tool | Description |
|---|---|
set_token |
Set a YourICP API token for this session |
submit_lookup |
Enrich contacts by email or LinkedIn URL (returns a jobId) |
check_lookup |
Poll the enrichment result for a jobId |
Requirements
- Node.js 18+
- A YourICP API token — get one at app.youricp.com
Quick start (no install)
Run it directly with npx — no clone, no global install:
YOURICP_API_TOKEN=your_token_here npx @youricp/mcp
Use with Claude Desktop
Add this to your claude_desktop_config.json — npx fetches and runs the
server automatically:
{
"mcpServers": {
"youricp": {
"command": "npx",
"args": ["-y", "@youricp/mcp"],
"env": {
"YOURICP_API_TOKEN": "your_token_here"
}
}
}
}
Restart Claude Desktop and the YourICP tools will appear.
Install globally (optional)
npm install -g @youricp/mcp
YOURICP_API_TOKEN=your_token_here youricp-mcp
From source
git clone https://github.com/youricp/mcp-server.git
cd mcp-server
npm install
YOURICP_API_TOKEN=your_token_here npm start
Or copy .env.example to .env and fill it in, then npm start.
Configuration
| Variable | Default | Description |
|---|---|---|
YOURICP_API_URL |
https://app.youricp.com |
Base URL of the YourICP API |
YOURICP_API_TOKEN |
(none) | Your YourICP API token |
Contributing
Contributions are welcome! Please read CONTRIBUTING.md and our Code of Conduct. To report a security issue, see SECURITY.md.
License
MIT © YourICP
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.