@rapidthoughtlabs/mcpone 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +236 -0
  3. package/dist/cli.js +144643 -0
  4. package/package.json +88 -0
package/package.json ADDED
@@ -0,0 +1,88 @@
1
+ {
2
+ "name": "@rapidthoughtlabs/mcpone",
3
+ "version": "0.1.0",
4
+ "description": "A single dynamic MCP server that turns JSON configs into working API tools",
5
+ "type": "module",
6
+ "main": "dist/cli.js",
7
+ "bin": {
8
+ "mcp-one": "dist/cli.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "README.md",
13
+ "LICENSE"
14
+ ],
15
+ "scripts": {
16
+ "build": "tsup",
17
+ "dev": "concurrently --names \"client,server\" --prefix-colors \"cyan,yellow\" \"npm run dev:client\" \"npm run dev:server\"",
18
+ "dev:client": "npm run dev --prefix client",
19
+ "dev:server": "tsx watch server/index.ts",
20
+ "dev:mcp": "tsx src/cli.ts start",
21
+ "start": "node dist/cli.js start",
22
+ "test": "vitest",
23
+ "typecheck": "tsc --noEmit",
24
+ "client:build": "npm run build --prefix client",
25
+ "seed": "tsx scripts/seed-registry.ts",
26
+ "seed:dry": "tsx scripts/seed-registry.ts --dry-run"
27
+ },
28
+ "keywords": [
29
+ "mcp",
30
+ "model-context-protocol",
31
+ "api",
32
+ "tools",
33
+ "llm"
34
+ ],
35
+ "license": "Apache-2.0",
36
+ "engines": {
37
+ "node": ">=20.0.0"
38
+ },
39
+ "dependencies": {
40
+ "@grpc/grpc-js": "^1.14.3",
41
+ "@grpc/proto-loader": "^0.8.0",
42
+ "@modelcontextprotocol/sdk": "^1.27.1",
43
+ "ajv": "^8.20.0",
44
+ "ajv-formats": "^3.0.1",
45
+ "chokidar": "^5.0.0",
46
+ "concurrently": "^9.2.1",
47
+ "cors": "^2.8.6",
48
+ "dotenv": "^17.3.1",
49
+ "express": "^5.2.1",
50
+ "jsonpath-plus": "^10.4.0",
51
+ "protobufjs": "^8.0.0"
52
+ },
53
+ "peerDependencies": {
54
+ "better-sqlite3": "^11.0.0",
55
+ "mongodb": "^6.10.0",
56
+ "mysql2": "^3.10.0",
57
+ "pg": "^8.11.0"
58
+ },
59
+ "peerDependenciesMeta": {
60
+ "pg": {
61
+ "optional": true
62
+ },
63
+ "mysql2": {
64
+ "optional": true
65
+ },
66
+ "better-sqlite3": {
67
+ "optional": true
68
+ },
69
+ "mongodb": {
70
+ "optional": true
71
+ }
72
+ },
73
+ "devDependencies": {
74
+ "@types/better-sqlite3": "^7.6.13",
75
+ "@types/cors": "^2.8.19",
76
+ "@types/express": "^5.0.6",
77
+ "@types/node": "^25.3.2",
78
+ "@types/pg": "^8.20.0",
79
+ "better-sqlite3": "^11.10.0",
80
+ "mongodb": "^6.21.0",
81
+ "mysql2": "^3.22.3",
82
+ "pg": "^8.20.0",
83
+ "tsup": "^8.5.1",
84
+ "tsx": "^4.21.0",
85
+ "typescript": "^5.9.3",
86
+ "vitest": "^4.0.18"
87
+ }
88
+ }