-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 956 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 956 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
38
39
40
41
42
{
"name": "mcp2cli",
"version": "0.2.0",
"description": "CLI bridge that wraps MCP servers as bash-invokable commands, recovering ~11K tokens of context window per session",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/mcp2cli.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"cli",
"ai-agents",
"claude",
"tool-invocation"
],
"bin": {
"mcp2cli": "src/cli/index.ts"
},
"scripts": {
"dev": "bun run src/cli/index.ts",
"build": "bun build --compile src/cli/index.ts --outfile dist/mcp2cli",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@tsconfig/bun": "^1.0.10",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"zod": "^4.3.6"
},
"engines": {
"bun": ">=1.0.0"
}
}