-
Notifications
You must be signed in to change notification settings - Fork 9
Add integrations/claude section with Claude Code + Desktop page #465
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
Open
dprevoznik
wants to merge
7
commits into
main
Choose a base branch
from
hypeship/docs-claude-integrations-section
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
2e9c6e8
Add integrations/claude section with Claude Code + Desktop page
dprevoznik d864e0a
Drop coming-soon note from Claude Desktop section
dprevoznik 505dc09
Fix MCP server link and tighten Claude Code setup steps
dprevoznik 5c74202
Drop generate-video from Claude Code plugin setup
dprevoznik d581617
Lead the Claude overview with Claude Code and Desktop
dprevoznik 66aeb4d
Order Claude Code and Desktop first in nav and integrations list
dprevoznik ad7ea30
Point skills list link to #available-skills anchor
dprevoznik 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
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
File renamed without changes.
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 |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| --- | ||
| title: "Claude Code and Desktop" | ||
| description: "Give Claude Code and Claude Desktop a Kernel cloud browser" | ||
| --- | ||
|
|
||
| Connect the Claude apps you already use to Kernel. There are two ways to bring Kernel into [Claude Code](https://www.claude.com/product/claude-code): | ||
|
|
||
| - **Marketplace plugin** — load Kernel's skills directly into Claude Code so it knows how to manage cloud browsers and write automations. | ||
| - **Remote MCP server** — connect Claude Code to Kernel's [MCP server](/reference/mcp-server) to create and manage cloud browsers from chat. | ||
|
|
||
| ## Marketplace plugin (Claude Code) | ||
|
|
||
| Kernel publishes an [official skills marketplace](https://github.com/kernel/skills) for Claude Code. Installing a plugin from it loads Kernel's best-practice skills into your coding agent. | ||
|
|
||
| Run these in the Claude Code REPL, one line at a time: | ||
|
|
||
| ```bash | ||
| /plugin marketplace add kernel/skills | ||
| /plugin install kernel-cli | ||
| /plugin install kernel-sdks | ||
| ``` | ||
|
|
||
| Each plugin bundles a set of skills: | ||
|
|
||
| - **`kernel-cli`** — managing browsers, apps, profiles, and proxies from the CLI, plus managed auth, session debugging, and bot-detection profiling. | ||
| - **`kernel-sdks`** — building browser automation with the TypeScript and Python SDKs. | ||
|
|
||
| See the [skills repo](https://github.com/kernel/skills#available-skills) for the current list. | ||
|
|
||
| ## Remote MCP server (Claude Code) | ||
|
|
||
| Add Kernel's remote MCP server to manage cloud browsers from Claude Code. | ||
|
|
||
| **Using the Kernel CLI (recommended):** | ||
|
|
||
| ```bash | ||
| kernel mcp install --target claude-code | ||
| # Then in the REPL run once to authenticate: | ||
| /mcp | ||
| ``` | ||
|
|
||
| **Manual setup:** | ||
|
|
||
| ```bash | ||
| claude mcp add --transport http kernel https://mcp.onkernel.com/mcp | ||
| # Then in the REPL run once to authenticate: | ||
| /mcp | ||
| ``` | ||
|
|
||
| ## Claude Desktop | ||
|
|
||
| Claude Desktop reaches Kernel through the same remote MCP server, added as a custom connector under **Settings → Connectors**. The [Claude client guide](/reference/mcp-server/clients/claude) has the steps, and covers Claude.ai as well. | ||
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
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 |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| --- | ||
| title: "Overview" | ||
| description: "Give Claude a Kernel cloud browser — across Claude Code, Claude Desktop, the Agent SDK, and Managed Agents" | ||
| --- | ||
|
|
||
| ## Claude + Kernel | ||
|
|
||
| Kernel gives Claude a real, cloud-hosted browser to work in, so your agents can load pages, read rendered content, and act on the web without you running any browser infrastructure. There are a few ways to connect Claude to Kernel depending on where your agent runs: | ||
|
|
||
| ### Claude Code and Claude Desktop | ||
|
|
||
| Connect the Claude apps you already use to Kernel. Add Kernel's [remote MCP server](/reference/mcp-server) to manage cloud browsers from Claude Code or Claude Desktop, or install the [marketplace plugin](https://github.com/kernel/skills#claude-code) to load Kernel's CLI and SDK skills into Claude Code. | ||
|
|
||
| [Set up Claude Code and Desktop →](/integrations/claude/claude-code-and-desktop) | ||
|
|
||
| ### Claude Agent SDK | ||
|
|
||
| The [Claude Agent SDK](https://platform.claude.com/docs/en/agent-sdk/overview) is a library you run yourself — on your own machine or deployed as a Kernel app. Pair it with Kernel's Playwright Execution API to build agents that browse the web and interact with websites on cloud browsers. | ||
|
|
||
| [Learn more about the Claude Agent SDK →](/integrations/claude/claude-agent-sdk) | ||
|
|
||
| ### Claude Managed Agents | ||
|
|
||
| [Claude Managed Agents](https://platform.claude.com/docs/en/managed-agents/overview) is Anthropic's hosted agent harness: define an agent once, then start as many cloud sessions as you need. Claude runs the agent loop in an Anthropic-managed sandbox; Kernel provisions a fresh, isolated Chromium session per run that the agent drives. You run neither the agent loop nor the browser. | ||
|
|
||
| [Learn more about Claude Managed Agents →](/integrations/claude/claude-managed-agents) | ||
|
|
||
| ## Next Steps | ||
|
|
||
| <CardGroup cols={3}> | ||
| <Card | ||
| title="Claude Code and Desktop" | ||
| icon="terminal" | ||
| href="/integrations/claude/claude-code-and-desktop" | ||
| > | ||
| Give the Claude apps a Kernel browser | ||
| </Card> | ||
| <Card | ||
| title="Claude Agent SDK" | ||
| icon="robot" | ||
| href="/integrations/claude/claude-agent-sdk" | ||
| > | ||
| Run Agent SDK automations on cloud browsers | ||
| </Card> | ||
| <Card | ||
| title="Claude Managed Agents" | ||
| icon="cloud" | ||
| href="/integrations/claude/claude-managed-agents" | ||
| > | ||
| Run Anthropic's hosted agent harness against cloud browsers | ||
| </Card> | ||
| </CardGroup> |
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.