realtime-avatar-mcp 0.7.0 → 0.7.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.d.ts +1 -1
- package/dist/server.js +2 -2
- package/package.json +2 -2
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.7.
|
|
8
|
+
export declare const MCP_VERSION = "0.7.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.7.
|
|
13
|
+
export const MCP_VERSION = "0.7.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 = {
|
|
@@ -188,7 +188,7 @@ export function createServer(options) {
|
|
|
188
188
|
]).describe("motionPrompt renders motion; assetId uploads a clip that must start AND end on the rest pose"),
|
|
189
189
|
durationSeconds: z.number().optional(),
|
|
190
190
|
reroll: z.boolean().optional().describe("Set true to force a re-render of the same prompt"),
|
|
191
|
-
})).max(
|
|
191
|
+
})).max(20).describe("The COMPLETE library (≤20 clips, ≤8 idle, ≤2 listen). Omitted clips are retired."),
|
|
192
192
|
expectedRevision: z.number().int().optional()
|
|
193
193
|
.describe("CAS: the revision you last read. Omit to declare unconditionally."),
|
|
194
194
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "realtime-avatar-mcp",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.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.7.
|
|
58
|
+
"realtime-avatar": "0.7.1",
|
|
59
59
|
"zod": "^4.4.3"
|
|
60
60
|
}
|
|
61
61
|
}
|