add-mcp 1.13.0 → 1.13.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 -9
- package/dist/index.js +5 -4
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -36,13 +36,13 @@ You can add env variables and arguments (stdio) and headers (remote) to the serv
|
|
|
36
36
|
|
|
37
37
|
## Find an MCP Servers
|
|
38
38
|
|
|
39
|
-
Find and install MCP servers from the
|
|
39
|
+
Find and install MCP servers from the integrations.sh MCP registry and/or the official Anthropic MCP registry:
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
42
|
npx add-mcp find vercel
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
-
When running `find`/`search` for the first time, the CLI prompts you to choose which registries to enable (
|
|
45
|
+
When running `find`/`search` for the first time, the CLI prompts you to choose which registries to enable (integrations.sh MCP registry and/or official Anthropic registry). You can also add custom registries to the configuration file.
|
|
46
46
|
|
|
47
47
|
## Supported Agents
|
|
48
48
|
|
|
@@ -290,14 +290,21 @@ If you run with `-y` before this one-time registry setup is completed, the CLI e
|
|
|
290
290
|
|
|
291
291
|
### Built-in Registries
|
|
292
292
|
|
|
293
|
-
| Registry
|
|
294
|
-
|
|
|
295
|
-
| **
|
|
296
|
-
| **Official Anthropic registry**
|
|
293
|
+
| Registry | Base URL | Description |
|
|
294
|
+
| -------------------------------- | ------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
295
|
+
| **integrations.sh MCP registry** | `https://mcp.agent-tooling.dev/api/v1/servers` | MCP servers discovered by integrations.sh and exposed through an MCP registry-compatible API, using add-mcp's checked-in `registry.json` as the source of truth. |
|
|
296
|
+
| **Official Anthropic registry** | `https://registry.modelcontextprotocol.io/v0.1/servers` | The community-driven MCP server registry maintained by Anthropic. Contains the broadest catalog of MCP servers. |
|
|
297
297
|
|
|
298
|
-
### Missing A Server in
|
|
298
|
+
### Missing A Server in integrations.sh?
|
|
299
299
|
|
|
300
|
-
The
|
|
300
|
+
The default add-mcp registry is generated from [integrations.sh](https://integrations.sh). To be listed in add-mcp, add your MCP server to integrations.sh. Package-only entries that integrations.sh cannot represent yet can still be contributed to add-mcp's `registry.overlay.json`.
|
|
301
|
+
|
|
302
|
+
Maintainers can refresh the checked-in registry snapshot with:
|
|
303
|
+
|
|
304
|
+
```bash
|
|
305
|
+
bun run registry:sync
|
|
306
|
+
bun run registry:verify
|
|
307
|
+
```
|
|
301
308
|
|
|
302
309
|
### Editing or Removing Registries
|
|
303
310
|
|
|
@@ -309,7 +316,7 @@ Registry selections are stored in `~/.config/add-mcp/config.json` under the `fin
|
|
|
309
316
|
"findRegistries": [
|
|
310
317
|
{
|
|
311
318
|
"url": "https://mcp.agent-tooling.dev/api/v1/servers",
|
|
312
|
-
"label": "
|
|
319
|
+
"label": "integrations.sh MCP registry"
|
|
313
320
|
},
|
|
314
321
|
{
|
|
315
322
|
"url": "https://registry.modelcontextprotocol.io/v0.1/servers",
|
package/dist/index.js
CHANGED
|
@@ -358,7 +358,7 @@ function getDefaultFindRegistries() {
|
|
|
358
358
|
return [
|
|
359
359
|
{
|
|
360
360
|
url: VERIFIED_ESSENTIALS_DEFAULT_SERVERS_URL,
|
|
361
|
-
label: "
|
|
361
|
+
label: "integrations.sh MCP registry"
|
|
362
362
|
},
|
|
363
363
|
{
|
|
364
364
|
url: resolveOfficialRegistryServersUrl(),
|
|
@@ -784,7 +784,7 @@ async function runFind(query, options) {
|
|
|
784
784
|
// package.json
|
|
785
785
|
var package_default = {
|
|
786
786
|
name: "add-mcp",
|
|
787
|
-
version: "1.13.
|
|
787
|
+
version: "1.13.1",
|
|
788
788
|
description: "Add MCP servers to your favorite coding agents with a single command.",
|
|
789
789
|
author: "Andre Landgraf <andre@neon.tech>",
|
|
790
790
|
license: "Apache-2.0",
|
|
@@ -812,6 +812,7 @@ var package_default = {
|
|
|
812
812
|
test: "tsx tests/source-parser.test.ts && tsx tests/agents.test.ts && tsx tests/config.test.ts && tsx tests/installer.test.ts && tsx tests/find.test.ts && tsx tests/package-arguments.test.ts && tsx tests/template.test.ts && tsx tests/reader.test.ts && tsx tests/formats-remove.test.ts && tsx tests/lib.test.ts && tsx tests/e2e/install.test.ts && tsx tests/e2e/cli.test.ts",
|
|
813
813
|
"test:unit": "tsx tests/source-parser.test.ts && tsx tests/agents.test.ts && tsx tests/config.test.ts && tsx tests/installer.test.ts && tsx tests/find.test.ts && tsx tests/package-arguments.test.ts && tsx tests/template.test.ts && tsx tests/reader.test.ts && tsx tests/formats-remove.test.ts && tsx tests/lib.test.ts",
|
|
814
814
|
"registry:sort": "tsx scripts/sort-registry.ts",
|
|
815
|
+
"registry:sync": "node scripts/sync-integrations-sh.mjs",
|
|
815
816
|
"registry:verify": "tsx scripts/verify-registry.ts",
|
|
816
817
|
"test:e2e": "tsx tests/e2e/install.test.ts && tsx tests/e2e/cli.test.ts",
|
|
817
818
|
typecheck: "tsc --noEmit",
|
|
@@ -1193,7 +1194,7 @@ async function runFindCommand(keyword, rawOptions) {
|
|
|
1193
1194
|
await main(installPlan.target, mergedOptions);
|
|
1194
1195
|
}
|
|
1195
1196
|
program.command("find [keyword]").description(
|
|
1196
|
-
"Find MCP servers from
|
|
1197
|
+
"Find MCP servers from integrations.sh registry data (omit keyword to browse)"
|
|
1197
1198
|
).option(
|
|
1198
1199
|
"-g, --global",
|
|
1199
1200
|
"Install globally (user-level) instead of project-level"
|
|
@@ -1726,7 +1727,7 @@ async function main(target, options) {
|
|
|
1726
1727
|
` ${DIM}$${RESET} ${TEXT}npx add-mcp ${DIM}<url> ${TEXT}-a cursor${RESET} ${DIM}Install to specific agent${RESET}`
|
|
1727
1728
|
);
|
|
1728
1729
|
console.log(
|
|
1729
|
-
` ${DIM}$${RESET} ${TEXT}npx add-mcp find ${DIM}<keyword>${RESET} ${DIM}Search
|
|
1730
|
+
` ${DIM}$${RESET} ${TEXT}npx add-mcp find ${DIM}<keyword>${RESET} ${DIM}Search integrations.sh MCP servers${RESET}`
|
|
1730
1731
|
);
|
|
1731
1732
|
console.log();
|
|
1732
1733
|
console.log(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "add-mcp",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.1",
|
|
4
4
|
"description": "Add MCP servers to your favorite coding agents with a single command.",
|
|
5
5
|
"author": "Andre Landgraf <andre@neon.tech>",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"test": "tsx tests/source-parser.test.ts && tsx tests/agents.test.ts && tsx tests/config.test.ts && tsx tests/installer.test.ts && tsx tests/find.test.ts && tsx tests/package-arguments.test.ts && tsx tests/template.test.ts && tsx tests/reader.test.ts && tsx tests/formats-remove.test.ts && tsx tests/lib.test.ts && tsx tests/e2e/install.test.ts && tsx tests/e2e/cli.test.ts",
|
|
29
29
|
"test:unit": "tsx tests/source-parser.test.ts && tsx tests/agents.test.ts && tsx tests/config.test.ts && tsx tests/installer.test.ts && tsx tests/find.test.ts && tsx tests/package-arguments.test.ts && tsx tests/template.test.ts && tsx tests/reader.test.ts && tsx tests/formats-remove.test.ts && tsx tests/lib.test.ts",
|
|
30
30
|
"registry:sort": "tsx scripts/sort-registry.ts",
|
|
31
|
+
"registry:sync": "node scripts/sync-integrations-sh.mjs",
|
|
31
32
|
"registry:verify": "tsx scripts/verify-registry.ts",
|
|
32
33
|
"test:e2e": "tsx tests/e2e/install.test.ts && tsx tests/e2e/cli.test.ts",
|
|
33
34
|
"typecheck": "tsc --noEmit",
|