You.com MCP Server
Enables AI assistants to search the web, get news, perform research, and retrieve AI-powered answers with citations using the You.com API.
README
You.com MCP Server
This MCP (Model Context Protocol) server provides AI assistants with the ability to search the web, get news, and perform research using the You.com API. Feedback welcomed.
<a href="https://glama.ai/mcp/servers/@jimbul/youdotcom_MCP"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@jimbul/youdotcom_MCP/badge" alt="You.com Server MCP server" /> </a>
Features
- Web Search: Access to You.com's web search functionality
- Smart Search: AI-powered answers with citation support
- Research: Comprehensive, citation-backed answers for academic queries
- News Search: Latest news articles on any topic
Prerequisites
- Node.js (v16 or higher)
- npm or yarn
- You.com API key (get one from api.you.com)
Installation
-
Clone this repository:
git clone https://github.com/jimbul/youcom-mcp.git cd youcom-mcp -
Install dependencies:
npm install -
Create a
.envfile based on the example:cp .env.example .env -
Add your You.com API key to the
.envfile:YOU_API_KEY=your_actual_api_key_here -
Build the project:
npm run build
Running Locally (Optional)
You can run the server locally for testing:
npm start
Setting up with Claude
To use this MCP server with Claude (Anthropic Assistant), you need to configure Claude to use this server:
-
Open the Claude extension settings in VS Code:
- Click on the Claude icon in the VS Code sidebar
- Click on the settings icon (⚙️) and select "MCP Settings"
-
Add the following configuration to the
mcpServerssection:
"youcom-mcp": {
"autoApprove": [],
"disabled": false,
"command": "node",
"args": [
"/absolute/path/to/your/youcom-mcp/dist/index.js"
],
"env": {
"YOU_API_KEY": "your_actual_api_key_here"
},
"transportType": "stdio"
}
Important Notes:
- Replace
/absolute/path/to/your/youcom-mcp/dist/index.jswith the actual path on your system - Replace
your_actual_api_key_herewith your You.com API key
Usage Examples
Once configured, you can use the MCP tools directly in your conversations with Claude:
Web Search
<use_mcp_tool>
<server_name>youcom-mcp</server_name>
<tool_name>web_search</tool_name>
<arguments>
{
"query": "latest research on renewable energy"
}
</arguments>
</use_mcp_tool>
Smart Search
<use_mcp_tool>
<server_name>youcom-mcp</server_name>
<tool_name>smart_search</tool_name>
<arguments>
{
"query": "how do quantum computers work",
"instructions": "explain in simple terms"
}
</arguments>
</use_mcp_tool>
Research
<use_mcp_tool>
<server_name>youcom-mcp</server_name>
<tool_name>research</tool_name>
<arguments>
{
"query": "effects of climate change on ocean ecosystems",
"instructions": "focus on coral reefs"
}
</arguments>
</use_mcp_tool>
News Search
<use_mcp_tool>
<server_name>youcom-mcp</server_name>
<tool_name>news_search</tool_name>
<arguments>
{
"query": "latest developments in AI"
}
</arguments>
</use_mcp_tool>
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Running evals
The evals package loads an mcp client that then runs the index.ts file, so there is no need to rebuild between tests. You can load environment variables by prefixing the npx command. Full documentation can be found here.
OPENAI_API_KEY=your-key npx mcp-eval src/evals/evals.ts src/index.ts
License
MIT
Acknowledgements
This project uses the You.com API for search functionality.
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.