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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "velixar-mcp-server",
3
- "version": "0.2.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
@@ -47,7 +47,7 @@ async function apiRequest(path, options = {}) {
47
47
  }
48
48
 
49
49
  const server = new Server(
50
- { name: "velixar-mcp-server", version: "0.2.1" },
50
+ { name: "velixar-mcp-server", version: "0.2.3" },
51
51
  { capabilities: { tools: {}, resources: {} } }
52
52
  );
53
53
 
@@ -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://t4xrnwgo7f.execute-api.us-east-1.amazonaws.com/v1";
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