@varun-ai07/covenant-mcp 2.3.0 → 2.3.1
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.
- package/dist/server.js +1 -1
- package/package.json +6 -4
package/dist/server.js
CHANGED
|
@@ -37,7 +37,7 @@ import { registerCovenantHelpTools } from "./tools/covenant-help.js";
|
|
|
37
37
|
export function createServer() {
|
|
38
38
|
const server = new McpServer({
|
|
39
39
|
name: "covenant-mcp",
|
|
40
|
-
version: "2.3.
|
|
40
|
+
version: "2.3.1",
|
|
41
41
|
});
|
|
42
42
|
// ── Core Identity ─────────────────────────────────────────────
|
|
43
43
|
registerAgentTools(server); // corven_agent: register, get, update, deactivate, stake, find
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@varun-ai07/covenant-mcp",
|
|
3
|
-
"version": "2.3.
|
|
4
|
-
"description": "COVENANT Protocol MCP Server
|
|
3
|
+
"version": "2.3.1",
|
|
4
|
+
"description": "COVENANT Protocol MCP Server \u2014 AI agent access to on-chain task marketplace",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
22
|
-
"better-sqlite3": "^12.11.1",
|
|
23
22
|
"dotenv": "^17.3.1",
|
|
24
23
|
"express": "^5.2.1",
|
|
25
24
|
"express-rate-limit": "^8.5.1",
|
|
@@ -68,5 +67,8 @@
|
|
|
68
67
|
],
|
|
69
68
|
"publishConfig": {
|
|
70
69
|
"access": "public"
|
|
70
|
+
},
|
|
71
|
+
"optionalDependencies": {
|
|
72
|
+
"better-sqlite3": "^12.11.1"
|
|
71
73
|
}
|
|
72
|
-
}
|
|
74
|
+
}
|