- Home
- MCP servers
- DX Toolkit
DX Toolkit
- typescript
11
GitHub Stars
typescript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"youdotcom-oss-dx-toolkit": {
"command": "bun",
"args": [
"run",
"dev:mcp"
],
"env": {
"YDC_API_KEY": "YOUR_API_KEY"
}
}
}
}You.org’s MCP server provides real-time web search, AI-powered answers, and content extraction to enable agentic workflows. This server acts as a bridge between your agents and live data sources, letting you compose powerful AI-powered experiences that can fetch current information, reason over it, and present structured results to users and other systems.
How to use
To run and interact with the MCP server, you start the local MCP process and connect your MCP client to it. You can operate the server in development (STDIO) mode for local testing or in HTTP mode for remote control. Once running, your MCP client can request live web results, AI-generated explanations, and content extraction to fuel workflows, dashboards, or automated agents.
How to install
Prerequisites you need before installation:
- Bun >= 1.2.21 for running the workspace commands
- GitHub CLI (recommended) for authentication with GitHub
Install steps you will follow in sequence:
# Clone the toolkit repository
git clone git@github.com:youdotcom-oss/dx-toolkit.git
cd dx-toolkit
# Install dependencies
bun install
# Set up environment variables
cp .env.example .env
# Edit .env and add your YDC_API_KEY
source .env
# Authenticate with GitHub (if using gh CLI)
hg auth login
# Build all packages
bun run build
# Run tests
bun test
# Run quality checks
bun run check
Configuration and environment
Environment variables you will typically set for the MCP server:
- YDC_API_KEY: Your You.com Data Center API key used to access You.com services.
Available tools
web_search
Performs real-time web searches to retrieve current information and sources for agent workflows.
ai_answers
Generates AI-based answers that synthesize search results and context into succinct responses.
content_extraction
Extracts structured content from web pages and documents to feed agents and workflows.