DX Toolkit
Open-source toolkit enabling developers to integrate You.com's AI capabilities into their workflows
What is DX Toolkit?
DX Toolkit is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to open-source toolkit enabling developers to integrate you.com's ai capabilities into their workflows
Open-source toolkit enabling developers to integrate You.com's AI capabilities into their workflows
This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.
Features
- Open-source toolkit enabling developers to integrate You.com
Use Cases
Maintainer
Works with
Installation
NPM
npx -y @youdotcom-oss/mcpManual Installation
npx -y @youdotcom-oss/mcpConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
How to Set Up and Use DX Toolkit
The DX Toolkit MCP server integrates You.com's AI-powered search and research capabilities into any MCP-compatible client, including Claude Desktop, Cursor, Windsurf, and VS Code. It exposes You.com's production search infrastructure — not a scraper — giving agents access to real-time web search, deep research synthesis, and web content retrieval. A free tier is available without signup, and authenticated tiers unlock research and finance tools.
Prerequisites
- Node.js 18 or later installed for npx usage
- An MCP-compatible client (Claude Desktop, Cursor, Windsurf, VS Code, etc.)
- For free tier: no API key required — set YDC_PROFILE=free
- For authenticated access: a You.com API key from you.com/platform/api-keys
Choose your access tier
The free tier (YDC_PROFILE=free) gives access to the you-search tool with no signup. Authenticated access via YDC_API_KEY unlocks you-research and you-contents. Finance tools (you-finance) require requesting access separately.
Add the MCP server to your client config
Edit your MCP client's configuration file to add the You.com DX Toolkit server. For Claude Desktop this is ~/Library/Application Support/Claude/claude_desktop_config.json on macOS.
{
"mcpServers": {
"you": {
"command": "npx",
"args": ["-y", "@youdotcom-oss/mcp"],
"env": {
"YDC_PROFILE": "free"
}
}
}
}Or install via Claude Code CLI
If you use Claude Code, you can add the server in one command using the MCP add subcommand.
claude mcp add you -e YDC_PROFILE=free -- npx @youdotcom-oss/mcpSwitch to authenticated access (optional)
Obtain a You.com API key from the developer dashboard, then update the env block in your config to use YDC_API_KEY instead of YDC_PROFILE. This unlocks you-research (multi-source synthesis) and you-contents (full page retrieval).
{
"mcpServers": {
"you": {
"command": "npx",
"args": ["-y", "@youdotcom-oss/mcp"],
"env": {
"YDC_API_KEY": "your-api-key-here"
}
}
}
}Restart your MCP client
Restart Claude Desktop or reload your editor to pick up the new MCP server configuration. The you-search tool (and others depending on your tier) will now be available.
DX Toolkit Examples
Client configuration
Free-tier Claude Desktop configuration — no API key required.
{
"mcpServers": {
"you": {
"command": "npx",
"args": ["-y", "@youdotcom-oss/mcp"],
"env": {
"YDC_PROFILE": "free"
}
}
}
}Prompts to try
Example prompts that exercise the You.com search and research tools.
- "Search the web for the latest news about the EU AI Act and summarize the key points"
- "Research the top 5 open-source LLM frameworks in 2025 and compare their features"
- "Fetch the contents of https://example.com/article and extract the main arguments"
- "Find recent developer documentation for the Anthropic Claude API"
- "Search for benchmark comparisons between GPT-4o and Claude 3.5 Sonnet"Troubleshooting DX Toolkit
Server starts but you-search returns no results
Confirm YDC_PROFILE is set to 'free' or a valid YDC_API_KEY is provided. If both are missing, the server may start but requests will be rejected with an authentication error.
you-research or you-contents tools are not available
These tools require an authenticated API key. Set YDC_API_KEY in the env block of your MCP config with a key obtained from you.com/platform/api-keys.
npx fails to download the package
Run 'npm cache clean --force' and retry. Alternatively pin a specific version: npx -y @youdotcom-oss/mcp@latest.
Frequently Asked Questions about DX Toolkit
What is DX Toolkit?
DX Toolkit is a Model Context Protocol (MCP) server that open-source toolkit enabling developers to integrate you.com's ai capabilities into their workflows It connects AI assistants to external tools and data sources through a standardized interface.
How do I install DX Toolkit?
Install via npm with the command: npx -y @youdotcom-oss/mcp. Then add the server configuration to your AI client's JSON config file (e.g., claude_desktop_config.json or .cursor/mcp.json).
Which AI clients work with DX Toolkit?
DX Toolkit works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.
Is DX Toolkit free to use?
Yes, DX Toolkit is open source and available under the MIT license. You can use it freely in both personal and commercial projects.
DX Toolkit Alternatives — Similar Developer Tools Servers
Looking for alternatives to DX Toolkit? Here are other popular developer tools servers you can use with Claude, Cursor, and VS Code.
Ecc
★ 188.2kThe agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
Javaguide
★ 155.8kJava 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发
Gemini CLI
★ 104.5kA secure MCP server that wraps the Google Gemini CLI, allowing clients to query Gemini models using local OAuth sessions without requiring an API key. It provides tools for model interaction and diagnostics with built-in protection against command in
Awesome MCP Servers
★ 87.3k⭐ Curated list of Model Context Protocol (MCP) servers - tools that extend Claude Desktop, Cursor, Windsurf, and other MCP clients with custom capabilities.
MCP Servers
★ 86.0kModel Context Protocol Servers
CC Switch
★ 77.5kA cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io
Browse More Developer Tools MCP Servers
Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.
Set Up DX Toolkit in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
Ready to use DX Toolkit?
Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.