-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 827 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 827 Bytes
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
{
"name": "@larryhudson/mcp-server-template",
"version": "0.1.2",
"description": "Model Context Protocol (MCP) server for X Y Z",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"REPLACE_ME": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"claude",
"ai"
],
"author": "Larry Hudson <larryhudson@hey.com>",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/larryhudson/mcp-server-template.git"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2"
}
}