You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/advanced-usage/rate-limits-costs.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,6 @@ This feature provides an additional safeguard, particularly for complex or long-
63
63
***Use Custom Instructions:** Provide custom instructions to guide Zoo Code's behavior and reduce the need for lengthy explanations in each prompt.
64
64
***Choose the Right Model:** Some models are more cost-effective than others. Consider using a smaller, faster model for tasks that don't require the full power of a larger model.
65
65
***Use Modes:** Different modes can access different tools, for example `Architect` can't modify code, which makes it a safe choice when analyzing a complex codebase, without worrying about accidentally allowing expensive operations.
66
-
***Disable MCP If Not Used:** If you're not using MCP (Model Context Protocol) features, consider [disabling it in the MCP settings](/features/mcp/using-mcp-in-roo#enabling-or-disabling-mcp-server-creation) to significantly reduce the size of the system prompt and save tokens.
66
+
***Disable MCP If Not Used:** If you're not using MCP (Model Context Protocol) features, consider [disabling it in the MCP settings](/features/mcp/using-mcp-in-roo#enabling-or-disabling-mcp-servers) to significantly reduce the size of the system prompt and save tokens.
67
67
68
68
By understanding and managing your API usage, you can use Zoo Code effectively and efficiently.
Copy file name to clipboardExpand all lines: docs/features/mcp/using-mcp-in-roo.mdx
+1-16Lines changed: 1 addition & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -250,32 +250,18 @@ Disabling your MCP Servers here will remove all MCP related logic and definition
250
250
251
251
---
252
252
253
-
## Enabling or Disabling MCP Server Creation
254
-
255
-
Disabling your MCP Server Creation here will just remove the instructions from your system prompt that Zoo Code uses to write MCP servers while not removing the context related to operating them. This reduces token usage. This is on by default.
256
-
257
-
1. Click the <Codiconname="server" /> icon in the top navigation of the Zoo Code pane
258
-
2. Check/Uncheck `Enable MCP Server Creation`
259
-
260
-
<imgsrc="/img/using-mcp-in-roo/using-mcp-in-roo-3.png"alt="Enable MCP Server Creation toggle"width="400" />
261
-
262
-
---
263
-
264
253
## How to Use Zoo to Create an MCP Server
265
254
266
255
If you need a specific tool or capability that isn't available through existing MCP servers, you can ask Zoo Code to build a new one for you.
267
256
268
-
**Prerequisite:** Ensure the **[Enable MCP Server Creation](#enabling-or-disabling-mcp-server-creation)** setting is checked ON in the MCP settings panel. If this is disabled, Zoo will not have the necessary instructions to build a server.
269
-
270
257
**How to Initiate:**
271
258
272
259
1.**Make a Request:** Clearly ask Zoo for the new tool or capability. For example:
273
260
* "Create an MCP tool that gets the current price of Bitcoin."
274
261
* "I need a tool that connects to my company's internal user database via its API."
275
262
* "Build an MCP server to interact with the GitHub Gist API."
276
263
277
-
2.**Zoo's Process (Simplified):** Once you make the request (and the setting is enabled), Zoo will:
278
-
* Fetch internal instructions for server creation.
264
+
2.**Zoo's Process (Simplified):** Once you make the request, Zoo will:
279
265
* Scaffold a basic server project (usually TypeScript) in the default MCP directory (e.g., `~/Documents/Cline/MCP` on macOS) unless you specify otherwise.
280
266
* Write the code to implement the requested tool, including handling necessary API calls.
281
267
***Handle Secrets:** If the tool requires API keys or other credentials, Zoo will ask you for them using the [`ask_followup_question`](/advanced-usage/available-tools/ask-followup-question) tool to ensure they are configured securely as environment variables for the server.
@@ -340,7 +326,6 @@ When enabled, Zoo Code will automatically approve this specific tool without pro
340
326
Zoo Code does not come with any pre-installed MCP servers. You'll need to find and install them separately.
341
327
342
328
***Community Repositories:** Check for community-maintained lists of MCP servers on GitHub
343
-
***Ask Zoo:** You can ask Zoo Code to help you find or even create MCP servers (when "[Enable MCP Server Creation](#enabling-or-disabling-mcp-server-creation)" is enabled)
344
329
***Build Your Own:** Create custom MCP servers using the SDK to extend Zoo Code with your own tools
345
330
346
331
For full SDK documentation, visit the [MCP GitHub repository](https://github.com/modelcontextprotocol/).
0 commit comments