Navigation
Mobile DocsNavigation
Mobile DocsCreate and manage Model Context Protocol tools
Create and manage tools for MCP servers. Tools allow LLM applications to perform actions and computations.
Layout: full
Options: Create Tool, Call Tool, Update Tool, Delete Tool
Placeholder: my-tool
Layout: half
Condition: operation = ["create_tool","call_tool","update_tool","delete_tool"]
Placeholder: Description of what the tool does
Layout: full
Condition: operation = ["create_tool","update_tool"]
Placeholder: { "param1": {"type": "string", "description": "First parameter"}, "param2": {"type": "number", "description": "Second parameter"} }
Layout: full
Condition: operation = ["create_tool","update_tool"]
Placeholder: async ({ param1, param2 }) => { // Implement tool logic here return { content: [{ type: "text", text: `Result: ${param1} ${param2}` }] }; }
Layout: full
Condition: operation = ["create_tool","update_tool"]
Placeholder: { "param1": "value1", "param2": 42 }
Layout: full
Condition: operation = "call_tool"
Placeholder: http://localhost:3000/mcp or stdio://path/to/server.js
Layout: full
Placeholder: 30000
Layout: half
Required
Required
Optional
Optional
Optional
Optional
Optional
Optional
Primary response type:
{
"success": "boolean",
"content": "json",
"isError": "boolean",
"error": "string"
}