Navigation
Mobile DocsNavigation
Mobile DocsCreate and manage Model Context Protocol servers
Create, configure, and manage MCP servers that expose resources, tools, and prompts to LLM applications.
Layout: full
Options: Create Server, Start Server, Stop Server, Add Resource
Placeholder: my-mcp-server
Layout: half
Condition: operation = ["create_server","start_server","stop_server","add_resource","add_tool","add_prompt"]
Placeholder: 1.0.0
Layout: half
Condition: operation = "create_server"
Layout: half
Condition: operation = ["create_server","start_server"]
Options: Streamable HTTP, stdio
Placeholder: 3000
Layout: half
Condition: operation = ["create_server","start_server"] AND transport = "streamable-http"
Placeholder: resource://{param1}/{param2}
Layout: full
Condition: operation = "add_resource"
Placeholder: async (uri, params) => { return { contents: [{ uri: uri.href, text: `Resource content for ${params.param1}` }] }; }
Layout: full
Condition: operation = "add_resource"
Placeholder: my-tool
Layout: half
Condition: operation = "add_tool"
Placeholder: { "param1": "string", "param2": "number" }
Layout: full
Condition: operation = "add_tool"
Placeholder: async ({ param1, param2 }) => { return { content: [{ type: "text", text: `Result: ${param1} ${param2}` }] }; }
Layout: full
Condition: operation = "add_tool"
Placeholder: my-prompt
Layout: half
Condition: operation = "add_prompt"
Placeholder: { "param1": "string", "param2": "string" }
Layout: full
Condition: operation = "add_prompt"
Placeholder: ({ param1, param2 }) => ({ messages: [{ role: "user", content: { type: "text", text: `Process this: ${param1} and ${param2}` } }] })
Layout: full
Condition: operation = "add_prompt"
Required
Optional
Optional
Optional
Optional
Optional
Optional
Optional
Optional
Optional
Optional
Optional
Optional
Primary response type:
{
"success": "boolean",
"serverId": "string",
"serverUrl": "string",
"error": "string"
}