picocode-core 0.9.149 → 0.9.150

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/mcp.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "picocode-core",
3
- "version": "0.9.149",
3
+ "version": "0.9.150",
4
4
  "description": "The agent runtime behind pico: sessions, tools, subagents, MCP, memory, and model access",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/mcp.js CHANGED
@@ -255,7 +255,7 @@ export async function createMcpRuntime({ root, onChange = () => {} }) {
255
255
  status: s.status,
256
256
  error: s.error,
257
257
  toolCount: s.connection?.tools.length || 0,
258
- tools: (s.connection?.tools || []).map((t) => ({ name: t.name, description: t.description || '' })),
258
+ tools: (s.connection?.tools || []).map((t) => ({ name: t.name, description: t.description || '', inputSchema: t.inputSchema ?? null })),
259
259
  }))
260
260
  },
261
261
  tools() {