Initial meta MCP server scaffold

This commit is contained in:
root
2026-03-12 09:39:39 +00:00
commit b11edee7c4
8 changed files with 1715 additions and 0 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "meta-mcp",
"version": "0.1.0",
"description": "Meta MCP ContextVM: accepts requirements to create and announce new MCP servers over Nostr",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/server.js",
"dev": "ts-node --esm src/server.ts",
"lint": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"uuid": "^11.1.0",
"zod": "^3.25.0"
},
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}