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
Section titled “One-click deeplink”CLI path
Section titled “CLI path”code --add-mcp '{"name":"axint","command":"npx","args":["-y","-p","@axint/compiler","axint-mcp"]}'
Manual JSON config
Section titled “Manual JSON config”Paste this into .vscode/mcp.json:
{
"mcpServers": {
"axint": {
"command": "npx",
"args": [
"-y",
"-p",
"@axint/compiler",
"axint-mcp"
]
}
}
}
What this means today
Section titled “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.