Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,16 @@ claude plugin install instavm-coderunner

That's it! Claude Code now has access to all CodeRunner tools:
- **execute_python_code** - Run Python code in persistent Jupyter kernel
- **start_python_session** - Reserve an isolated kernel for a named session
- **list_python_sessions** - List active named sessions
- **stop_python_session** - Stop a session and discard its kernel state
- **navigate_and_get_all_visible_text** - Web scraping with Playwright
- **list_skills** - List available skills (docx, xlsx, pptx, pdf, image processing, etc.)
- **get_skill_info** - Get documentation for specific skills
- **get_skill_file** - Read skill files and examples

Pass the returned `session_id` to `execute_python_code` to keep state isolated between agents. Up to five named sessions can run concurrently.

**Learn more:** See the [plugin repository](https://github.com/instavm/coderunner-plugin) for detailed documentation.

</details>
Expand Down
3 changes: 2 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,8 @@ wait_for_server() {
done
echo "❌ The container started but the MCP server did not respond within 120 seconds."
echo " Check the container logs with: container logs coderunner"
echo " If coderunner.local does not resolve, verify DNS setup with: container system property list"
echo " If coderunner.local does not resolve, verify domain = \"local\" in ~/.config/container/config.toml"
echo " and check the DNS service with: container system dns list"
return 1
}

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ openai

requests>=2.33.0

mcp[cli]
mcp[cli]>=1.26,<2

fastmcp

Expand Down
Loading
Loading