morphit/apps/mcp-server/package.json
Morphit Team 7c1c3bb332
Some checks failed
morphit-ci / TypeScript typecheck (sweep all workspaces) (push) Has been cancelled
morphit-ci / apps/web svelte-check (svelte-kit sync + svelte-aware tsc) (push) Has been cancelled
morphit-ci / Integration tests (real Postgres 16) (push) Has been cancelled
morphit-ci / ansible-lint (playbook quality gate) (push) Has been cancelled
morphit-ci / Smoke suite (run-smokes.sh, triple-pulse) (push) Has been cancelled
morphit-release / Build + publish release tarball (push) Has been cancelled
v1.11.1 — registration self-heal + data-fs disk health + offline-install RPC softening + node-health unification (cp707-cp710)
2026-08-11 17:38:41 -07:00

42 lines
1.3 KiB
JSON

{
"name": "morphit-mcp",
"version": "1.11.1",
"description": "Morphit MCP server — read-only orderbook + federation directory exposed to AI agents (Claude / ChatGPT / Grok / Perplexity / Cursor / Cline / local LLMs) via the Model Context Protocol. Lets an agent answer 'where can I buy XMR no-KYC near me' by calling into Morphit's federated orderbook directly. Never holds keys. Never signs trades. Hands the user off to the Morphit web UI for the actual key-signing step, preserving Morphit's zero-KYC + non-custodial pitch.",
"type": "module",
"license": "AGPL-3.0-only",
"bin": {
"morphit-mcp": "dist/main.js"
},
"files": [
"dist/",
"src/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "tsx src/main.ts",
"format": "prettier --write .",
"lint": "prettier --check .",
"start": "tsx src/main.ts",
"build": "tsc -p tsconfig.build.json",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@morphit/asset-registry": "*",
"@morphit/net-defense": "*",
"tsx": "^4.19.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.7.5",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vitest": "^2.1.2"
}
}