Configure servers
Define each server by a unique name undermcp.servers in your OpenCode configuration. V2 does not place server names directly under mcp.
opencode.jsonc
disabled is true. There is no V2 enabled field.
Local servers
A local server is a command that OpenCode starts using the MCP stdio transport.opencode.jsonc
Use
{env:NAME} to substitute an environment variable while loading config. Shell expressions such as $NAME are not expanded in JSON strings.
Remote servers
A remote server uses the MCP Streamable HTTP transport. Itsurl must be a valid absolute URL.
opencode.jsonc
Use
oauth: false for a server that exclusively uses an API key or another header-based credential.
OAuth
OAuth support is enabled for remote servers unlessoauth is false. OpenCode discovers the authorization server, uses PKCE, refreshes tokens, and attempts dynamic client registration when the server supports it. OAuth credentials are stored outside project configuration.
For a server that supports dynamic client registration, only the remote server is required:
opencode.jsonc
/connect in the TUI:
opencode.jsonc
Remove stored credentials with:
Timeouts
Timeouts are positive integer milliseconds. Configure defaults undermcp.timeout; a server’s timeout fields override matching defaults.
opencode.jsonc
Names and permissions
OpenCode combines the server name and MCP tool name as<server>_<tool>. Characters other than letters, numbers, _, and - are replaced with _; for example, server context 7 and tool resolve.library/id become context_7_resolve_library_id. MCP prompts appear as slash commands named <server>:<prompt> using the same normalization.
Choose short server names that remain unique after normalization. Under the default Code Mode, MCP tools are grouped by the normalized server name.
Set codemode to false on a server when its tools should remain on the provider’s native tool list:
CLI commands
V2 provides these MCP management commands:mcp add accepts either --url for a remote server or a command after -- for a local server, not both. Use --header NAME=VALUE only with remote servers and --env NAME=VALUE only with local servers. Edit the config directly for OAuth, timeout, working-directory, or enablement settings.