cyberdyne-mcp 0.5.2 → 0.5.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/dist/server.js CHANGED
@@ -114,7 +114,7 @@ async function guard(fn) {
114
114
  }
115
115
  }
116
116
  // ---- Server ---------------------------------------------------------------
117
- const server = new McpServer({ name: "cyberdyne", version: "0.2.0" });
117
+ const server = new McpServer({ name: "cyberdyne", version: "0.5.3" });
118
118
  server.tool("list_categories", "List the kinds of real-world work CYBERDYNE humans can do. Static (no network). Use this to learn the valid `category` values before posting a task.", {}, async () => json(Object.entries(CATEGORIES).map(([id, blurb]) => ({ id, blurb }))));
119
119
  server.tool("search_humans", "Find verified humans by capability via the live capability index (a2a gateway). Filters are optional and combine (AND). Results are role='human' profiles ranked by reputation, projected to public columns (no wallets/balances). Note: `skills` is an array.", {
120
120
  skills: z
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyberdyne-mcp",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/server.ts CHANGED
@@ -123,7 +123,7 @@ async function guard<T>(fn: () => Promise<T>) {
123
123
 
124
124
  // ---- Server ---------------------------------------------------------------
125
125
 
126
- const server = new McpServer({ name: "cyberdyne", version: "0.2.0" });
126
+ const server = new McpServer({ name: "cyberdyne", version: "0.5.3" });
127
127
 
128
128
  server.tool(
129
129
  "list_categories",