Skip to content

Commit 81f1195

Browse files
committed
fix links
1 parent b0cfa4f commit 81f1195

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

content/docs/extensions/computer_use.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Computer Use
33
description: Enable AI agents to control your computer like a human - clicking, typing, running commands, and editing files.
44
---
55

6-
Transform your AI agent into an autonomous computer operator. This built-in extension enables agents to see your screen, control the mouse and keyboard, execute shell commands, and edit files - just like a human user sitting at the computer.
6+
Transform your AI agent into an autonomous computer operator. The built-in [computer](https://github.com/ServiceStack/llms/tree/main/llms/extensions/computer) extension enables agents to see your screen, control the mouse and keyboard, execute shell commands, and edit files - just like a human user sitting at the computer.
77

88
Based on [Anthropic's computer use tools](https://github.com/anthropics/anthropic-quickstarts/tree/main/computer-use-demo), it brings full desktop automation capabilities to your AI workflows.
99

content/docs/v3.mdx

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -457,20 +457,23 @@ llms --add fast_mcp
457457

458458
### Configuration
459459

460-
MCP servers are configured via a `mcp.json` file. By default, Anthropic's [Filesystem MCP Server](https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem) is pre-configured:
460+
MCP servers are configured via a `mcp.json` file. By default, Anthropic's [Git MCP Server](https://github.com/modelcontextprotocol/servers/tree/main/src/git) is pre-configured:
461461

462462
```json
463463
{
464464
"mcpServers": {
465-
"filesystem": {
466-
"description": "Anthropic's MCP Server for secure filesystem operations",
467-
"command": "npx",
468-
"args": ["-y", "@modelcontextprotocol/server-filesystem", "$PWD"]
469-
},
470465
"git": {
471466
"command": "uvx",
472467
"args": ["mcp-server-git", "--repository", "$PWD"]
473-
}
468+
},
469+
"gemini-gen": {
470+
"description": "Gemini Image and Audio TTS generation",
471+
"command": "uvx",
472+
"args": ["gemini-gen-mcp"],
473+
"env": {
474+
"GEMINI_API_KEY": "$GEMINI_API_KEY"
475+
}
476+
}
474477
}
475478
}
476479
```
@@ -576,7 +579,7 @@ LLMS includes a suite of tools for executing code in various languages within a
576579

577580
## Computer Use
578581

579-
The built-in [computer_use](https://github.com/ServiceStack/llms/tree/main/llms/extensions/computer_use) extension transforms AI agents into autonomous computer operators. Based on [Anthropic's computer use tools](https://github.com/anthropics/anthropic-quickstarts/tree/main/computer-use-demo), it enables agents to see your screen, control the mouse and keyboard, execute shell commands, and edit files - just like a human sitting at the computer.
582+
The built-in [computer_use](https://github.com/ServiceStack/llms/tree/main/llms/extensions/computer) extension transforms AI agents into autonomous computer operators. Based on [Anthropic's computer use tools](https://github.com/anthropics/anthropic-quickstarts/tree/main/computer-use-demo), it enables agents to see your screen, control the mouse and keyboard, execute shell commands, and edit files - just like a human sitting at the computer.
580583

581584
This unlocks powerful capabilities that traditional API-based tools cannot achieve:
582585

0 commit comments

Comments
 (0)