omni mcp server for VS Code
io.github.bitofacoder/omni-mcp-server
All-in-one MCP server: GitHub, Git, Slack, web fetch, memory, and filesystem. Agent Mode opt-in.
client:VS Code
transport:stdio
runtime:npm
Install omni mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "github-personal-access-token",
"description": "GITHUB_PERSONAL_ACCESS_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "slack-bot-token",
"description": "SLACK_BOT_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "omni-agent-mode",
"description": "OMNI_AGENT_MODE",
"password": true
}
],
"servers": {
"omni-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@bitofacoder/omni-mcp-server"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${input:github-personal-access-token}",
"SLACK_BOT_TOKEN": "${input:slack-bot-token}",
"OMNI_AGENT_MODE": "${input:omni-agent-mode}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs