diff --git a/README.md b/README.md
index 52f23c9..ac3088c 100644
--- a/README.md
+++ b/README.md
@@ -132,7 +132,36 @@ That's it! Claude Code now has access to all CodeRunner tools:
-### Option 3: Python OpenAI Agents
+### Option 3: OpenCode Configuration
+
+
+Configure OpenCode to use CodeRunner as an MCP server:
+
+
+
+Create or edit `~/.config/opencode/opencode.json`:
+
+```json
+{
+ "$schema": "https://opencode.ai/config.json",
+ "mcp": {
+ "coderunner": {
+ "type": "remote",
+ "url": "http://coderunner.local:8222/mcp",
+ "enabled": true
+ }
+ }
+}
+```
+
+After saving the configuration:
+1. Restart OpenCode
+2. CodeRunner tools will be available automatically
+3. Start executing Python code with full access to the sandboxed environment
+
+
+
+### Option 4: Python OpenAI Agents
Use CodeRunner with OpenAI's Python agents library:
@@ -152,7 +181,7 @@ That's it! Claude Code now has access to all CodeRunner tools:
Enter prompts like "write python code to generate 100 prime numbers" and watch it execute safely in the sandbox!
-### Option 4: Gemini-CLI
+### Option 5: Gemini-CLI
[Gemini CLI](https://github.com/google-gemini/gemini-cli) is recently launched by Google.
@@ -178,7 +207,7 @@ That's it! Claude Code now has access to all CodeRunner tools:

-### Option 5: Kiro by Amazon
+### Option 6: Kiro by Amazon
[Kiro](https://kiro.dev/blog/introducing-kiro/) is recently launched by Amazon.
@@ -207,7 +236,7 @@ That's it! Claude Code now has access to all CodeRunner tools:
-### Option 6: Coderunner-UI (Offline AI Workspace)
+### Option 7: Coderunner-UI (Offline AI Workspace)
[Coderunner-UI](https://github.com/instavm/coderunner-ui) is our own offline AI workspace tool designed for full privacy and local processing.
diff --git a/images/opencode-example.png b/images/opencode-example.png
new file mode 100644
index 0000000..4402da9
Binary files /dev/null and b/images/opencode-example.png differ