velixar-mcp-server 0.2.2 → 0.2.3
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/package.json +3 -2
- package/server.json +29 -0
- package/src/index.js +1 -1
- package/tests/server.test.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "velixar-mcp-server",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "MCP server for Velixar persistent memory — give your AI agents long-term recall",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -28,5 +28,6 @@
|
|
|
28
28
|
"homepage": "https://velixarai.com",
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@modelcontextprotocol/sdk": "1.21.0"
|
|
31
|
-
}
|
|
31
|
+
},
|
|
32
|
+
"mcpName": "io.github.velixarai/memory"
|
|
32
33
|
}
|
package/server.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.velixarai/memory",
|
|
4
|
+
"description": "Persistent memory for AI assistants. Store, search, and recall across sessions.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/VelixarAi/velixar-mcp-server",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "0.2.3",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "velixar-mcp-server",
|
|
14
|
+
"version": "0.2.3",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
},
|
|
18
|
+
"environmentVariables": [
|
|
19
|
+
{
|
|
20
|
+
"description": "Your Velixar API key (get one free at velixarai.com)",
|
|
21
|
+
"isRequired": true,
|
|
22
|
+
"format": "string",
|
|
23
|
+
"isSecret": true,
|
|
24
|
+
"name": "VELIXAR_API_KEY"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
}
|
package/src/index.js
CHANGED
package/tests/server.test.js
CHANGED
|
@@ -124,7 +124,7 @@ describe("error handling", () => {
|
|
|
124
124
|
// Helper: simulates the CallTool handler logic from index.js
|
|
125
125
|
// This mirrors the actual handler without needing stdio transport
|
|
126
126
|
function makeHandler(name, args) {
|
|
127
|
-
const API_BASE = "https://
|
|
127
|
+
const API_BASE = "https://api.velixarai.com";
|
|
128
128
|
const API_KEY = process.env.VELIXAR_API_KEY;
|
|
129
129
|
const USER_ID = process.env.VELIXAR_USER_ID;
|
|
130
130
|
|