This repository was archived by the owner on Feb 25, 2026. It is now read-only.
docs: add MCP config file path (~/.config/kilo/opencode.json)#319
Merged
marius-kilocode merged 2 commits intoKilo-Org:devfrom Feb 16, 2026
Merged
docs: add MCP config file path (~/.config/kilo/opencode.json)#319marius-kilocode merged 2 commits intoKilo-Org:devfrom
marius-kilocode merged 2 commits intoKilo-Org:devfrom
Conversation
- README: state where MCP is configured and format (mcp object, type local, command array) - migration.md: add config file location section for macOS/Linux/Windows and format
- README: mention opencode.jsonc; optional fields (environment, enabled, timeout); link to global/index.ts and config.ts McpLocal - migration.md: document config load order (config.json, opencode.json, opencode.jsonc); Windows note (xdg-basedir); Config.McpLocal and file refs
marius-kilocode
approved these changes
Feb 16, 2026
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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Context
Users who install Kilo CLI via
npm install -g @kilocode/cli(1.0.x) need the config file path and format for MCP. This PR documents~/.config/kilo/opencode.json(oropencode.jsonc) and the"mcp"object format.Implementation
~/.config/kilo/opencode.json(oropencode.jsonc), top-level"mcp",type: "local",command: ["executable", ...], optionalenvironment,enabled,timeout. Link toglobal/index.tsandconfig.ts(McpLocal).config.json,opencode.json,opencode.jsoncin~/.config/kilo/; paths for macOS/Linux/Windows; pointer toConfig.McpLocal.Docs only.
Screenshots
How to Test
~/.config/kilo/opencode.json, add"mcp": { "myserver": { "type": "local", "command": ["node", "/path/to/server.js"] } }.