VS Code
VS Code should be treated as an MCP install surface, not as a public marketplace extension until a real marketplace listing exists.
One-click deeplink
Open the VS Code MCP deeplinkCLI path
code --add-mcp '{"name":"axint","command":"npx","args":["-y","@axint/compiler","axint-mcp"]}'
Manual JSON config
Paste this into .vscode/mcp.json:
{
"mcpServers": {
"axint": {
"command": "npx",
"args": [
"-y",
"@axint/compiler",
"axint-mcp"
]
}
}
}
What this means today
- Use the deeplink if you want the fastest path.
- Use the CLI if you are scripting setup.
- Use the JSON if you want full control or need to commit project-local MCP config.
Axint then becomes available to VS Code features that can call MCP servers, including GitHub Copilot agent mode and any other MCP-capable assistant flow.