realtime-avatar-mcp 0.3.0 → 0.4.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/README.md CHANGED
@@ -1,27 +1,26 @@
1
1
  # realtime-avatar-mcp
2
2
 
3
- **Not published yet** — the package is marked `private: true`, so `npm publish` skips it rather than relying on nobody running the command. Build it and point your agent at the local path.
3
+ Published on npm as [`realtime-avatar-mcp`](https://www.npmjs.com/package/realtime-avatar-mcp) — run it with `npx`, never installed into an app.
4
4
 
5
5
  An MCP server for Realtime Avatar. [`AGENTS.md`](../../AGENTS.md) tells a coding agent what
6
6
  the API is; this lets it *look* — at your avatars, your balance, your bill — instead of
7
7
  guessing ids and inventing shapes.
8
8
 
9
- ```bash
10
- npm run build
11
- ```
12
-
13
9
  ```jsonc
14
10
  {
15
11
  "mcpServers": {
16
12
  "realtime-avatar": {
17
- "command": "node",
18
- "args": ["/abs/path/to/realtime-avatar-sdk/libs/mcp/dist/bin.js"],
13
+ "command": "npx",
14
+ "args": ["-y", "realtime-avatar-mcp"],
19
15
  "env": { "REALTIME_AVATAR_API_KEY": "tic_test_…" }
20
16
  }
21
17
  }
22
18
  }
23
19
  ```
24
20
 
21
+ Working on it in this repo? `npm run build`, then point `command` at `node` with
22
+ `args: ["/abs/path/to/realtime-avatar-sdk/libs/mcp/dist/bin.js"]`.
23
+
25
24
  ## Tools
26
25
 
27
26
  | Tool | |
package/dist/server.d.ts CHANGED
@@ -5,7 +5,7 @@ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
5
5
  * `test/server.test.ts` asserts the two stay equal; the equivalent constant in
6
6
  * `realtime-avatar` had that guard and this one did not, which is how it drifted.
7
7
  */
8
- export declare const MCP_VERSION = "0.3.0";
8
+ export declare const MCP_VERSION = "0.4.1";
9
9
  /**
10
10
  * The Realtime Avatar MCP server.
11
11
  *
package/dist/server.js CHANGED
@@ -10,7 +10,7 @@ import { RealtimeAvatar, isQueued } from "realtime-avatar";
10
10
  * `test/server.test.ts` asserts the two stay equal; the equivalent constant in
11
11
  * `realtime-avatar` had that guard and this one did not, which is how it drifted.
12
12
  */
13
- export const MCP_VERSION = "0.3.0";
13
+ export const MCP_VERSION = "0.4.1";
14
14
  const MICROS_PER_CREDIT = 1_000_000;
15
15
  /** Extension -> asset kind, so a caller does not have to restate what the filename says. */
16
16
  const KIND_BY_EXT = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "realtime-avatar-mcp",
3
- "version": "0.3.0",
3
+ "version": "0.4.1",
4
4
  "description": "MCP server for Realtime Avatar — let a coding agent read your avatars, balance and bill directly.",
5
5
  "license": "MIT",
6
6
  "author": "The Influence Company",
@@ -55,7 +55,7 @@
55
55
  },
56
56
  "dependencies": {
57
57
  "@modelcontextprotocol/sdk": "^1.30.0",
58
- "realtime-avatar": "0.3.0",
58
+ "realtime-avatar": "0.4.1",
59
59
  "zod": "^4.4.3"
60
60
  }
61
61
  }