@youdotcom-oss/mcp 2.0.8 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -4
- package/bin/stdio.js +1079 -9424
- package/package.json +2 -2
- package/src/http.ts +2 -0
- package/src/research/register-research-tool.ts +69 -0
- package/src/research/research.schemas.ts +19 -0
- package/src/research/research.utils.ts +30 -0
- package/src/stdio.ts +2 -0
- package/src/tests/tool.spec.ts +126 -0
package/README.md
CHANGED
|
@@ -5,6 +5,7 @@ The You.com MCP Server gives your AI agents **real-time access to the latest web
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
7
|
- **Web and news search**: Comprehensive search using You.com's unified Search API with advanced search operators
|
|
8
|
+
- **Research**: Comprehensive answers with cited sources, configurable effort (lite to exhaustive)
|
|
8
9
|
- **Content extraction**: Extract and retrieve full content from web pages in markdown or HTML format
|
|
9
10
|
- **Multiple transport protocols**: STDIO and Streamable HTTP support
|
|
10
11
|
- **Bearer Token Authentication**: Secure API access in HTTP mode
|
|
@@ -180,13 +181,18 @@ For setup, follow the MCP installation [guide](https://zed.dev/docs/ai/mcp#as-cu
|
|
|
180
181
|
|
|
181
182
|
## Available tools
|
|
182
183
|
|
|
183
|
-
This MCP server provides
|
|
184
|
+
This MCP server provides three tools that work seamlessly with your AI agent through natural language:
|
|
184
185
|
|
|
185
186
|
### you-search
|
|
186
187
|
Comprehensive web and news search with advanced filtering capabilities. Perfect for finding current information, research articles, documentation, and news stories.
|
|
187
188
|
|
|
188
189
|
**When to use**: When you need to search the web for information, filter by specific sites/file types, or get the latest news on a topic.
|
|
189
190
|
|
|
191
|
+
### you-research
|
|
192
|
+
Research with comprehensive answers and cited sources. Configurable effort levels (lite, standard, deep, exhaustive) let you trade speed for thoroughness.
|
|
193
|
+
|
|
194
|
+
**When to use**: When you need in-depth answers to complex questions, research reports with citations, or thorough analysis that goes beyond simple search results.
|
|
195
|
+
|
|
190
196
|
### you-contents
|
|
191
197
|
Extract full page content from URLs in markdown, HTML, or structured metadata formats. Useful for documentation analysis, content processing, SEO data extraction, and batch URL processing.
|
|
192
198
|
|
|
@@ -208,6 +214,12 @@ Here are common scenarios showing when and how to use each tool with natural lan
|
|
|
208
214
|
- "Get the latest news about renewable energy from the past week"
|
|
209
215
|
- "Find PDF files about machine learning algorithms"
|
|
210
216
|
|
|
217
|
+
**Use you-research when:**
|
|
218
|
+
- "Give me a comprehensive analysis of the current state of AI regulation"
|
|
219
|
+
- "Research the pros and cons of WebAssembly vs JavaScript for performance-critical applications"
|
|
220
|
+
- "What are the latest breakthroughs in quantum computing? Include sources."
|
|
221
|
+
- "Provide a detailed comparison of React, Vue, and Svelte with citations"
|
|
222
|
+
|
|
211
223
|
### Content extraction & analysis
|
|
212
224
|
|
|
213
225
|
**Use you-contents when:**
|
|
@@ -221,9 +233,9 @@ Here are common scenarios showing when and how to use each tool with natural lan
|
|
|
221
233
|
### Combined workflows
|
|
222
234
|
|
|
223
235
|
Your AI agent can combine multiple tools in a single conversation:
|
|
224
|
-
1. **
|
|
225
|
-
2. **
|
|
226
|
-
3. **News +
|
|
236
|
+
1. **Search + Extract**: "Search for the best TypeScript tutorials, then extract the content from the top 3 results"
|
|
237
|
+
2. **Research + Deep Dive**: "Research WebAssembly performance benefits, then extract code samples from the cited sources"
|
|
238
|
+
3. **News + Research**: "Find recent articles about AI regulation, then research the policy implications"
|
|
227
239
|
|
|
228
240
|
### Pro tips
|
|
229
241
|
|