mo5 mcp server for VS Code
io.github.thlg057/mo5-mcp-server
MCP server for Thomson MO5 C development, 6809, CMOC, SDK, toolchain.
client:VS Code
transport:stdio
runtime:npm
Install mo5 mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "rag-base-url",
"description": "RAG_BASE_URL",
"password": true
}
],
"servers": {
"mo5-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@thlg057/mo5-rag-mcp"
],
"env": {
"RAG_BASE_URL": "${input:rag-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs