Mistral Vibe Code
Connect the documentation MCP server to the Mistral Vibe Code CLI
Mistral Vibe Code
Mistral Vibe Code configures MCP servers in
its config.toml, using an array of [[mcp_servers]] tables.
Local (stdio)
toml
[[mcp_servers]]
name = "oi-docs"
transport = "stdio"
command = "php"
args = ["/absolute/path/to/OiDevDocs/artisan", "mcp:start", "documentation"]
startup_timeout_sec = 30Remote (HTTP)
toml
[[mcp_servers]]
name = "oi-docs"
transport = "streamable-http"
url = "https://dev.olacombe.com/mcp/documentation"Use transport = "http" if you prefer plain HTTP, or add a headers table for authentication.
Verify
In a Vibe Code session, run /mcp to list servers, then /mcp oi-docs to display the tools it
exposes. Tools are namespaced as oi-docs_search-documentation, etc. See the
overview for the reference values used above.