-
Notifications
You must be signed in to change notification settings - Fork 3
docs(mcp-server): update tool and resource listings #50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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] | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| ``` | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The resources section could benefit from more detailed explanations. Consider adding example URIs (e.g., 'profiles://profile-name' or 'browsers://browser-id') to show users the expected format for accessing specific resources.
Agent: 🤖 General