Zocomputer
@zocc/zocomputerv2026.07.29.1
01README
Zo Computer MCP + Ask: access every Zo tool (89+ tools) via MCP JSON-RPC and Zo's conversational AI via /zo/ask — all through a single swamp model. Includes convenience wrappers for web_search, read_file, generate_image, and full generic mcp_call_tool for any tool in the Zo surface.
02Models
@zocc/zocomputerv2026.07.29.1mod.ts
fn ask(input: string, model?: string)
Send a prompt to Zo's conversational AI and get a response
| Argument | Type | Description |
|---|---|---|
| input | string | The prompt or question for Zo |
| model? | string | Optional model override (e.g. 'byok:b5700bd6-fca9-4aa2-9d31-bc9f5bb33bbc') |
fn mcp_list_tools(filter?: string)
List all Zo MCP tools with descriptions and input schemas
| Argument | Type | Description |
|---|---|---|
| filter? | string | Optional substring to filter tool names (e.g. 'web', 'file') |
fn mcp_call_tool(name: string, arguments: string)
Call any Zo MCP tool by name with arguments
| Argument | Type | Description |
|---|---|---|
| name | string | Tool name (e.g. 'web_search', 'read_file', 'generate_image', 'bash') |
| arguments | string | Tool arguments as a JSON object matching the tool's input_schema |
fn web_search(query: string, max_results?: number, time_range?: enum)
Search the web via Zo's web_search MCP tool
| Argument | Type | Description |
|---|---|---|
| query | string | Search query |
| max_results? | number | Maximum results to return (default 10) |
| time_range? | enum | Time range filter |
fn read_file(path: string, start_line?: number, end_line?: number)
Read a file from the Zo workspace
| Argument | Type | Description |
|---|---|---|
| path | string | Absolute path to the file (e.g. '/home/workspace/example.md') |
| start_line? | number | Optional starting line number (1-indexed) |
| end_line? | number | Optional ending line number (1-indexed, inclusive) |
fn generate_image(prompt: string, n?: number)
Generate an image via Zo's AI image generation
| Argument | Type | Description |
|---|---|---|
| prompt | string | Image description prompt |
| n? | number | Number of images to generate (default 1) |
Resources
askResult(infinite)— Zo conversational AI response
toolList(infinite)— List of Zo MCP tools with their schemas
toolCallResult(infinite)— Result from calling a Zo MCP tool
03Stats
A
100 / 100
Downloads
0
Archive size
7.7 KB
- Has README or module doc2/2earned
- README has a code example1/1earned
- README is substantive1/1earned
- Most symbols documented1/1earned
- No slow types (deprecated)1/1earned
- Dependencies pass trust audit2/2earned
- Has description1/1earned
- Platform support declared (or universal)2/2earned
- License declared1/1earned
- Verified public repository2/2earned
04Platforms
05Labels