-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.05 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "meta-mcp-server",
"version": "2.0.1",
"type": "module",
"description": "MCP server that helps create other MCP servers -- the original meta-MCP, now modernized",
"main": "build/main.js",
"bin": {
"meta-mcp-server": "./build/main.js"
},
"private": false,
"files": [
"build",
"README.md",
"src"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node build/main.js",
"start:http": "node build/main.js --http",
"test": "node --test build/test/*.js",
"publish": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "https://github.com/DMontgomery40/meta-mcp-server.git"
},
"keywords": [
"mcp",
"server",
"modelcontextprotocol",
"meta",
"generator",
"code-execution"
],
"author": "David Montgomery",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"typescript": "^5.7.2"
}
}