@mastra/mcp-registry-registry 0.0.0-separate-trace-data-from-component-20250501042644 → 0.0.0-support-d1-client-20250701191943
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/dist/{chunk-JJGHVNUE.js → chunk-YU6LNU6R.js} +18 -2
- package/dist/index.js +1 -1
- package/dist/stdio.js +4 -4
- package/package.json +19 -16
|
@@ -167,10 +167,11 @@ var registryData = {
|
|
|
167
167
|
{
|
|
168
168
|
id: "apify",
|
|
169
169
|
name: "Apify",
|
|
170
|
-
description: "
|
|
171
|
-
url: "https://apify.com/",
|
|
170
|
+
description: "A MCP marketplace enabling AI agents to use 5,000+ ready-made servers and Actors.",
|
|
171
|
+
url: "https://apify.com/store",
|
|
172
172
|
servers_url: "https://api.apify.com/v2/store",
|
|
173
173
|
tags: ["verified"],
|
|
174
|
+
count: "5000+",
|
|
174
175
|
postProcessServers: processApifyServers
|
|
175
176
|
},
|
|
176
177
|
{
|
|
@@ -228,6 +229,13 @@ var registryData = {
|
|
|
228
229
|
tags: ["open-source"],
|
|
229
230
|
count: 20
|
|
230
231
|
},
|
|
232
|
+
{
|
|
233
|
+
id: "klavisai",
|
|
234
|
+
name: "Klavis AI",
|
|
235
|
+
description: "Klavis AI is open source MCP integrations for AI Applications",
|
|
236
|
+
url: "https://github.com/Klavis-AI/klavis",
|
|
237
|
+
tags: ["open-source"]
|
|
238
|
+
},
|
|
231
239
|
{
|
|
232
240
|
id: "make",
|
|
233
241
|
name: "Make MCP",
|
|
@@ -243,6 +251,14 @@ var registryData = {
|
|
|
243
251
|
tags: ["verified"],
|
|
244
252
|
count: "100+"
|
|
245
253
|
},
|
|
254
|
+
{
|
|
255
|
+
id: "mcpbar",
|
|
256
|
+
name: "MCP Bar",
|
|
257
|
+
description: "Open Registry & Package Manager for MCP Servers",
|
|
258
|
+
url: "https://www.mcp.bar/",
|
|
259
|
+
tags: ["open-source"],
|
|
260
|
+
count: 4429
|
|
261
|
+
},
|
|
246
262
|
{
|
|
247
263
|
id: "mcpget",
|
|
248
264
|
name: "MCP-Get",
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { registryData } from './chunk-
|
|
1
|
+
export { registryData } from './chunk-YU6LNU6R.js';
|
package/dist/stdio.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { registryData } from './chunk-
|
|
3
|
-
import fs from '
|
|
2
|
+
import { registryData } from './chunk-YU6LNU6R.js';
|
|
3
|
+
import fs from 'fs/promises';
|
|
4
4
|
import { Server } from '@modelcontextprotocol/sdk/server/index.js';
|
|
5
5
|
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
|
|
6
6
|
import { ListToolsRequestSchema, CallToolRequestSchema } from '@modelcontextprotocol/sdk/types.js';
|
|
7
7
|
import { z } from 'zod';
|
|
8
8
|
import { zodToJsonSchema } from 'zod-to-json-schema';
|
|
9
|
-
import path from '
|
|
10
|
-
import { fileURLToPath } from '
|
|
9
|
+
import path from 'path';
|
|
10
|
+
import { fileURLToPath } from 'url';
|
|
11
11
|
|
|
12
12
|
var RegistryEntrySchema = z.object({
|
|
13
13
|
id: z.string(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/mcp-registry-registry",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-support-d1-client-20250701191943",
|
|
4
4
|
"description": "MCP server for registry registry services.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -23,25 +23,28 @@
|
|
|
23
23
|
"author": "",
|
|
24
24
|
"license": "Elastic-2.0",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
26
|
+
"@modelcontextprotocol/sdk": "^1.13.0",
|
|
27
27
|
"uuid": "^11.1.0",
|
|
28
|
-
"zod": "^3.
|
|
29
|
-
"zod-to-json-schema": "^3.
|
|
30
|
-
"@mastra/core": "0.0.0-separate-trace-data-from-component-20250501042644"
|
|
28
|
+
"zod": "^3.25.67",
|
|
29
|
+
"zod-to-json-schema": "^3.24.5"
|
|
31
30
|
},
|
|
32
31
|
"devDependencies": {
|
|
33
|
-
"@hono/node-server": "^1.
|
|
34
|
-
"@types/node": "^20.
|
|
35
|
-
"@wong2/mcp-cli": "^1.
|
|
32
|
+
"@hono/node-server": "^1.14.4",
|
|
33
|
+
"@types/node": "^20.19.0",
|
|
34
|
+
"@wong2/mcp-cli": "^1.10.0",
|
|
36
35
|
"cross-env": "^7.0.3",
|
|
37
|
-
"eslint": "^9.
|
|
38
|
-
"hono": "^4.
|
|
39
|
-
"tsup": "^8.
|
|
40
|
-
"tsx": "^4.
|
|
41
|
-
"typescript": "^5.
|
|
42
|
-
"vitest": "^3.
|
|
43
|
-
"@
|
|
44
|
-
"@
|
|
36
|
+
"eslint": "^9.29.0",
|
|
37
|
+
"hono": "^4.8.3",
|
|
38
|
+
"tsup": "^8.5.0",
|
|
39
|
+
"tsx": "^4.20.3",
|
|
40
|
+
"typescript": "^5.8.3",
|
|
41
|
+
"vitest": "^3.2.4",
|
|
42
|
+
"@internal/lint": "0.0.0-support-d1-client-20250701191943",
|
|
43
|
+
"@mastra/core": "0.0.0-support-d1-client-20250701191943",
|
|
44
|
+
"@mastra/mcp": "0.0.0-support-d1-client-20250701191943"
|
|
45
|
+
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"@mastra/core": "0.0.0-support-d1-client-20250701191943"
|
|
45
48
|
},
|
|
46
49
|
"scripts": {
|
|
47
50
|
"build": "tsup src/index.ts src/stdio.ts --format esm --experimental-dts --treeshake=smallest --splitting",
|