@youdotcom-oss/mcp 1.3.1 → 1.3.2

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.
Files changed (3) hide show
  1. package/README.md +15 -16
  2. package/bin/stdio.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # You.com MCP Server
2
2
 
3
- A Model Context Protocol (MCP) server that provides web search, AI-powered answers, and content extraction using You.com APIs. Built with Bun runtime for optimal performance and supports multiple transport protocols for compatibility with different MCP clients.
3
+ The You.com MCP Server brings comprehensive web access to your agentic IDE through the [Model Context Protocol](https://modelcontextprotocol.io/). It enables AI assistants to search the web, extract content from URLs, and get AI-powered answers with real-time information directly within your development environment.
4
4
 
5
5
  ## Features
6
6
 
@@ -39,7 +39,7 @@ Choose your MCP client from the [detailed setup guides](#adding-to-your-mcp-clie
39
39
  ```json
40
40
  {
41
41
  "mcpServers": {
42
- "ydc-search": {
42
+ "ydc-server": {
43
43
  "type": "http",
44
44
  "url": "https://api.you.com/mcp",
45
45
  "headers": { "Authorization": "Bearer <you-api-key>" }
@@ -52,7 +52,7 @@ Choose your MCP client from the [detailed setup guides](#adding-to-your-mcp-clie
52
52
  ```json
53
53
  {
54
54
  "mcpServers": {
55
- "ydc-search": {
55
+ "ydc-server": {
56
56
  "command": "npx",
57
57
  "args": ["@youdotcom-oss/mcp"],
58
58
  "env": { "YDC_API_KEY": "<you-api-key>" }
@@ -86,7 +86,7 @@ Detailed configuration instructions for specific MCP clients. See [Getting Start
86
86
  ```json
87
87
  {
88
88
  "mcpServers": {
89
- "ydc-search": {
89
+ "ydc-server": {
90
90
  "type": "http",
91
91
  "url": "https://api.you.com/mcp",
92
92
  "headers": {
@@ -101,7 +101,7 @@ Detailed configuration instructions for specific MCP clients. See [Getting Start
101
101
  ```json
102
102
  {
103
103
  "mcpServers": {
104
- "ydc-search": {
104
+ "ydc-server": {
105
105
  "command": "npx",
106
106
  "args": ["@youdotcom-oss/mcp"],
107
107
  "env": {
@@ -117,8 +117,7 @@ Detailed configuration instructions for specific MCP clients. See [Getting Start
117
117
 
118
118
  **Quick Setup:**
119
119
  ```bash
120
- # Add using Claude Code CLI (if available)
121
- claude mcp add ydc-search npx @youdotcom-oss/mcp
120
+ claude mcp add --transport http ydc-server https://api.you.com/mcp --header "Authorization: Bearer <your-api-key>"
122
121
  ```
123
122
 
124
123
  **Manual Setup:**
@@ -149,11 +148,11 @@ Follow the [Claude Desktop MCP guide](https://docs.anthropic.com/en/docs/build-w
149
148
  Edit `~/.codex/config.toml`:
150
149
 
151
150
  ```toml
152
- [mcp_servers.ydc-search]
151
+ [mcp_servers.ydc-server]
153
152
  command = "npx"
154
153
  args = ["@youdotcom-oss/mcp"]
155
154
 
156
- [mcp_servers.ydc-search.env]
155
+ [mcp_servers.ydc-server.env]
157
156
  YDC_API_KEY = "<you-api-key>"
158
157
  ```
159
158
 
@@ -217,7 +216,7 @@ Use [mcp-remote](https://www.npmjs.com/package/mcp-remote) since JetBrains only
217
216
  ```json
218
217
  {
219
218
  "mcpServers": {
220
- "ydc-search": {
219
+ "ydc-server": {
221
220
  "command": "npx",
222
221
  "args": ["mcp-remote", "https://api.you.com/mcp", "--header", "Authorization: Bearer ${YDC_API_KEY}"],
223
222
  "env": { "YDC_API_KEY": "<you-api-key>" }
@@ -255,7 +254,7 @@ Edit `~/.config/opencode/opencode.json`:
255
254
  {
256
255
  "$schema": "https://opencode.ai/config.json",
257
256
  "mcp": {
258
- "ydc-search": {
257
+ "ydc-server": {
259
258
  "type": "local",
260
259
  "command": ["npx", "@youdotcom-oss/mcp"],
261
260
  "enabled": true,
@@ -270,7 +269,7 @@ Edit `~/.config/opencode/opencode.json`:
270
269
  {
271
270
  "$schema": "https://opencode.ai/config.json",
272
271
  "mcp": {
273
- "ydc-search": {
272
+ "ydc-server": {
274
273
  "type": "local",
275
274
  "command": ["npx", "mcp-remote", "https://api.you.com/mcp", "--header", "Authorization: Bearer ${YDC_API_KEY}"],
276
275
  "enabled": true,
@@ -303,7 +302,7 @@ Edit `~/.config/opencode/opencode.json`:
303
302
  **Quick Setup (Command Line):**
304
303
  ```bash
305
304
  # Add MCP server
306
- code --add-mcp "{\"name\":\"ydc-search\",\"command\":\"npx\",\"args\":[\"@youdotcom-oss/mcp\"],\"env\":{\"YDC_API_KEY\":\"<you-api-key>\"}}"
305
+ code --add-mcp "{\"name\":\"ydc-server\",\"command\":\"npx\",\"args\":[\"@youdotcom-oss/mcp\"],\"env\":{\"YDC_API_KEY\":\"<you-api-key>\"}}"
307
306
  ```
308
307
 
309
308
  **Manual Setup:**
@@ -321,7 +320,7 @@ Create `mcp.json` file in your workspace (`.vscode/mcp.json`) or user profile us
321
320
  }
322
321
  ],
323
322
  "servers": {
324
- "ydc-search": {
323
+ "ydc-server": {
325
324
  "command": "npx",
326
325
  "args": ["@youdotcom-oss/mcp"],
327
326
  "env": { "YDC_API_KEY": "${input:ydc-api-key}" }
@@ -358,7 +357,7 @@ Add to your Zed `settings.json` using `"context_servers"` instead of `"mcpServer
358
357
  ```json
359
358
  {
360
359
  "context_servers": {
361
- "ydc-search": {
360
+ "ydc-server": {
362
361
  "source": "custom",
363
362
  "command": "npx",
364
363
  "args": ["@youdotcom-oss/mcp"],
@@ -375,7 +374,7 @@ Use [mcp-remote](https://www.npmjs.com/package/mcp-remote) to bridge HTTP to std
375
374
  ```json
376
375
  {
377
376
  "context_servers": {
378
- "ydc-search": {
377
+ "ydc-server": {
379
378
  "source": "custom",
380
379
  "command": "npx",
381
380
  "args": ["mcp-remote", "https://api.you.com/mcp", "--header", "Authorization: Bearer ${YDC_API_KEY}"],
package/bin/stdio.js CHANGED
@@ -11154,7 +11154,7 @@ class StdioServerTransport {
11154
11154
  // package.json
11155
11155
  var package_default = {
11156
11156
  name: "@youdotcom-oss/mcp",
11157
- version: "1.3.1",
11157
+ version: "1.3.2",
11158
11158
  description: "You.com API Model Context Protocol Server",
11159
11159
  license: "MIT",
11160
11160
  engines: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@youdotcom-oss/mcp",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "You.com API Model Context Protocol Server",
5
5
  "license": "MIT",
6
6
  "engines": {