diff options
| author | Dax Raad <[email protected]> | 2025-06-14 14:52:02 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-06-14 14:52:02 -0400 |
| commit | 37bb8895fefdf87af4ddbb4b754a690548ba8ff5 (patch) | |
| tree | fb19265ed8a39c6f4d5a612e93536607ac597bb9 | |
| parent | 89b95be4de64babe7050ccc2ed51adaaf208b15f (diff) | |
| download | opencode-37bb8895fefdf87af4ddbb4b754a690548ba8ff5.tar.gz opencode-37bb8895fefdf87af4ddbb4b754a690548ba8ff5.zip | |
docs: readme
| -rw-r--r-- | README.md | 46 |
1 files changed, 22 insertions, 24 deletions
@@ -55,7 +55,28 @@ Project configuration is optional. You can place an `opencode.json` file in the } ``` -### Providers +#### MCP + +```json title="opencode.json" +{ + "$schema": "http://opencode.ai/config.json", + "mcp": { + "localmcp": { + "type": "local", + "command": ["bun", "x", "my-mcp-command"], + "environment": { + "MY_ENV_VAR": "my_env_var_value" + } + }, + "remotemcp": { + "type": "remote", + "url": "https://my-mcp-server.com" + } + } +} +``` + +#### Providers You can use opencode with any provider listed at [here](https://ai-sdk.dev/providers/ai-sdk-providers). Use the npm package name as the key in your config. Note we use v5 of the ai-sdk and not all providers support that yet. @@ -79,29 +100,6 @@ You can use opencode with any provider listed at [here](https://ai-sdk.dev/provi } ``` -#### Provider Options - -#### MCP - -```json title="opencode.json" -{ - "$schema": "http://opencode.ai/config.json", - "mcp": { - "localmcp": { - "type": "local", - "command": ["bun", "x", "my-mcp-command"], - "environment": { - "MY_ENV_VAR": "my_env_var_value" - } - }, - "remotemcp": { - "type": "remote", - "url": "https://my-mcp-server.com" - } - } -} -``` - ### Contributing To run opencode locally you need |
