-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.73 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.73 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
{
"name": "mcpx",
"version": "0.7.2",
"description": "Token-efficient MCP client: TypeScript schemas (not JSON), LLM-friendly syntax, batch calls, TOON output. Perfect for Claude/LLM automations.",
"type": "module",
"scripts": {
"build": "bun build ./src/cli.ts --compile --minify --sourcemap --outfile ./dist/mcpx",
"check": "bun format && bun lint && bun typecheck",
"format": "oxfmt .",
"lint": "oxlint --type-aware --tsconfig tsconfig.json",
"typecheck": "tsgo --project tsconfig.json --noEmit",
"test": "vitest run",
"clean": "rimraf dist",
"prepublishOnly": "bun check && bun test && bun build",
"release": "./scripts/release.sh",
"mcpx:list": "bun src/cli.ts list",
"mcpx:call": "bun src/cli.ts call"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.21.1",
"@toon-format/toon": "^1.0.0",
"acorn": "^8.15.0",
"commander": "^14.0.2",
"confbox": "^0.2.2",
"es-toolkit": "^1.41.0",
"ora": "^8.0.1",
"rolldown": "^1.0.0-beta.47",
"valibot": "^1.1.0"
},
"devDependencies": {
"@types/estree": "^1.0.8",
"@types/node": "^24.10.1",
"@typescript/native-preview": "7.0.0-dev.20251112.1",
"oxfmt": "^0.13.0",
"oxlint": "^1.28.0",
"oxlint-tsgolint": "^0.5.1",
"rimraf": "^6.0.1",
"typescript": "^5.6.3",
"vitest": "^4.0.8",
"zod": "3"
},
"repository": {
"type": "git",
"url": "https://github.com/AIGC-Hackers/mcpx"
},
"keywords": [
"mcp",
"model-context-protocol",
"mcp-client",
"cli",
"typescript",
"anthropic",
"claude",
"llm-tools",
"token-efficient",
"batch-operations",
"toon-format",
"oauth",
"cursor",
"codex",
"automation"
],
"author": "Ethan Huo",
"contributors": [
"Sweetistics"
],
"license": "MIT",
"publishConfig": {
"access": "public"
}
}