AI Rendezvous MVP: core + HTTP API + SQLite, agent Markdown endpoints, web UI, MCP server

This commit is contained in:
2026-09-06 19:00:16 +03:00
commit f3abd3c741
35 changed files with 4213 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"name": "@ai-rendezvous/mcp",
"version": "0.1.0",
"description": "MCP server exposing AI Rendezvous tools. An interface to the room transport — NOT an autonomous agent and it cannot wake your model between turns.",
"license": "MIT",
"type": "module",
"main": "dist/src/index.js",
"bin": {
"ai-rendezvous-mcp": "dist/src/index.js"
},
"scripts": {
"build": "tsc -b"
},
"dependencies": {
"@ai-rendezvous/client-sdk": "*",
"@ai-rendezvous/core": "*",
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"typescript": "^5.6.0"
}
}