From 2847f29ba6a4ec15cb1dd2a6a3614b4332b69abc Mon Sep 17 00:00:00 2001 From: Mason Williams Date: Wed, 17 Sep 2025 17:43:26 -0400 Subject: [PATCH] docs(mcp-server): update tool and resource listings --- reference/mcp-server.mdx | 33 ++++++++++++++++++++++++++++++--- 1 file changed, 30 insertions(+), 3 deletions(-) diff --git a/reference/mcp-server.mdx b/reference/mcp-server.mdx index 141d170..9a409e5 100644 --- a/reference/mcp-server.mdx +++ b/reference/mcp-server.mdx @@ -180,21 +180,36 @@ Configure these values wherever the tool expects MCP server settings. ## Tools ### Browser Automation -- `create_browser` - Launch a new browser session +- `create_browser` - Launch a new browser session with options (headless, stealth, persistence, timeout, profile) - `get_browser` - Get browser session information - `list_browsers` - List active browser sessions - `delete_browser` - Terminate a browser session +### Profile Management +- `setup_profile` - Create or update browser profiles with guided setup process +- `list_profiles` - List all available browser profiles +- `delete_profile` - Delete browser profile permanently + ### App Management -- `list_apps` - List apps in your Kernel organization +- `list_apps` - List apps in your Kernel organization with optional filtering - `invoke_action` - Execute actions in Kernel apps - `get_deployment` - Get deployment status and logs -- `list_deployments` - List all deployments +- `list_deployments` - List all deployments with optional filtering - `get_invocation` - Get action invocation details ### Documentation & Search - `search_docs` - Search Kernel platform documentation and guides +## Resources + +- `profiles://` - Access browser profiles (list all or get specific profile) +- `browsers://` - Access browser sessions (list all or get specific session) +- `apps://` - Access deployed apps (list all or get specific app) + +## Prompts + +- `kernel-concepts` - Get explanations of Kernel's core concepts (browsers, apps, overview) + ## Troubleshooting - Cursor clean reset: ⌘/Ctrl Shift P → run `Cursor: Clear All MCP Tokens` (resets all MCP servers and auth; re-enable Kernel and re-authenticate). @@ -219,3 +234,15 @@ Human: Create a stealth browser session that I can reuse for testing login flows Assistant: I'll create a persistent, stealth-enabled browser that maintains state between uses. [Uses create_browser tool with persistence and stealth options] ``` + +### Set up browser profiles for authentication + +``` +Human: Set up a profile for my work accounts +Assistant: I'll create a profile and guide you through the setup process. +[Uses setup_profile tool] + +Human: I'm done setting up my accounts +Assistant: Perfect! I'll close the browser session and save your profile. +[Uses delete_browser tool to save profile] +```