@youdotcom-oss/mcp 1.6.0 → 2.0.0
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 +1 -13
- package/bin/stdio.js +145 -325
- package/package.json +2 -2
- package/src/contents/contents.schemas.ts +4 -4
- package/src/contents/contents.utils.ts +8 -26
- package/src/http.ts +0 -2
- package/src/shared/format-search-results-text.ts +4 -4
- package/src/shared/use-client-version.ts +1 -1
- package/src/stdio.ts +0 -2
- package/src/tests/tool.spec.ts +12 -73
- package/src/express/express.schema.ts +0 -23
- package/src/express/express.utils.ts +0 -44
- package/src/express/register-express-tool.ts +0 -67
- package/src/express/tests/express.utils.spec.ts +0 -177
package/README.md
CHANGED
|
@@ -5,7 +5,6 @@ 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
|
-
- **AI-powered Express Agent**: Fast responses with optional real-time web search integration
|
|
9
8
|
- **Content extraction**: Extract and retrieve full content from web pages in markdown or HTML format
|
|
10
9
|
- **Multiple transport protocols**: STDIO and Streamable HTTP support
|
|
11
10
|
- **Bearer Token Authentication**: Secure API access in HTTP mode
|
|
@@ -181,18 +180,13 @@ For setup, follow the MCP installation [guide](https://zed.dev/docs/ai/mcp#as-cu
|
|
|
181
180
|
|
|
182
181
|
## Available tools
|
|
183
182
|
|
|
184
|
-
This MCP server provides
|
|
183
|
+
This MCP server provides two tools that work seamlessly with your AI agent through natural language:
|
|
185
184
|
|
|
186
185
|
### you-search
|
|
187
186
|
Comprehensive web and news search with advanced filtering capabilities. Perfect for finding current information, research articles, documentation, and news stories.
|
|
188
187
|
|
|
189
188
|
**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.
|
|
190
189
|
|
|
191
|
-
### you-express
|
|
192
|
-
Fast AI-powered agent that provides synthesized answers with optional real-time web search. Ideal for straightforward questions that benefit from AI interpretation.
|
|
193
|
-
|
|
194
|
-
**When to use**: When you want a direct answer to a question, with optional web search for up-to-date context and citations.
|
|
195
|
-
|
|
196
190
|
### you-contents
|
|
197
191
|
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.
|
|
198
192
|
|
|
@@ -214,12 +208,6 @@ Here are common scenarios showing when and how to use each tool with natural lan
|
|
|
214
208
|
- "Get the latest news about renewable energy from the past week"
|
|
215
209
|
- "Find PDF files about machine learning algorithms"
|
|
216
210
|
|
|
217
|
-
**Use you-express when:**
|
|
218
|
-
- "What are the key differences between REST and GraphQL?"
|
|
219
|
-
- "Explain how quantum entanglement works"
|
|
220
|
-
- "What happened in the tech industry today?" (with web search enabled)
|
|
221
|
-
- "Summarize the main features of the latest Python release"
|
|
222
|
-
|
|
223
211
|
### Content extraction & analysis
|
|
224
212
|
|
|
225
213
|
**Use you-contents when:**
|