- Add @tpmjs/mcp-client package for connecting to MCP servers - Add @tpmjs/bridge CLI for bridging local MCP servers to TPMJS - Add @tpmjs/test-file-writer test MCP server - Add BridgeConnection and CollectionBridgeTool database models - Add /api/bridge endpoints for bridge communication - Add /api/collections/[id]/bridge-tools API for managing bridge tools - Update MCP handlers to include bridge tools in tools/list - Add bridge status UI at /dashboard/settings/bridge - Add interactive bridge tutorial at /docs/tutorials/bridge
56 lines
1.1 KiB
JSON
56 lines
1.1 KiB
JSON
{
|
|
"name": "@tpmjs/bridge",
|
|
"version": "0.1.0",
|
|
"description": "Bridge CLI for connecting local MCP servers to TPMJS",
|
|
"author": "TPMJS",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/tpmjs/tpmjs.git",
|
|
"directory": "packages/bridge"
|
|
},
|
|
"homepage": "https://tpmjs.com",
|
|
"keywords": [
|
|
"tpmjs",
|
|
"mcp",
|
|
"bridge",
|
|
"cli",
|
|
"model-context-protocol"
|
|
],
|
|
"type": "module",
|
|
"bin": {
|
|
"tpmjs-bridge": "./dist/cli.js"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"start": "node dist/cli.js",
|
|
"type-check": "tsc --noEmit",
|
|
"clean": "rm -rf dist .turbo"
|
|
},
|
|
"dependencies": {
|
|
"@tpmjs/mcp-client": "workspace:*",
|
|
"commander": "^14.0.0",
|
|
"picocolors": "^1.1.1",
|
|
"ws": "^8.18.2"
|
|
},
|
|
"devDependencies": {
|
|
"@tpmjs/tsconfig": "workspace:*",
|
|
"@types/node": "^22.15.29",
|
|
"@types/ws": "^8.18.1",
|
|
"tsup": "^8.5.1",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|