-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.86 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.86 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "toolception",
"version": "0.6.3",
"private": false,
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"dev:server-demo": "tsx tests/smoke-e2e/server-demo.ts",
"dev:client-demo": "tsx tests/smoke-e2e/client-demo.ts",
"prepublishOnly": "npm run typecheck && npm run build && npm run test:run"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"@modelcontextprotocol/sdk": "^1.27.1",
"fastify": "^5.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/connect": "^3.4.38",
"@types/node": "^25.0.0",
"@vitest/coverage-v8": "^3.2.4",
"tsx": "^4.19.0",
"typescript": "^5.9.2",
"vite": "^7.2.4",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=25.3.0"
},
"license": "Apache-2.0",
"description": "Dynamic MCP server toolkit for runtime toolset management with Fastify transport and meta-tools",
"author": "code-rabi",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"keywords": [
"model-context-protocol",
"mcp",
"mcp-server",
"dynamic-tools",
"toolset",
"tool-management",
"permissions",
"authentication",
"access-control",
"security",
"authorization",
"json-rpc",
"fastify",
"zod",
"ai",
"llm",
"agents"
],
"repository": {
"type": "git",
"url": "https://github.com/code-rabi/toolception.git"
},
"bugs": {
"url": "https://github.com/code-rabi/toolception/issues"
}
}