Cursor / VS Code
Cursor + VS Code
Cursor and Continue.dev (VS Code extension) accept MCP servers using the same config shape as Claude Desktop.
Cursor
Settings → MCP → Add new MCP server. Fill in:
{
"name": "nevios",
"command": "uv",
"args": [
"--directory", "/absolute/path/to/Accounting/apps/mcp",
"run", "python", "-m", "nevios_mcp.server"
],
"env": {
"NEVIOS_API_URL": "https://api.nevios.io",
"NEVIOS_API_KEY": "nev_pat_...",
"NEVIOS_WORKSPACE_ID": "...",
"NEVIOS_WORKSPACE_SLUG": "vasky"
}
}
The Nevios tools then appear in the chat @ menu.
VS Code (Continue.dev)
In ~/.continue/config.json:
{
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "stdio",
"command": "uv",
"args": [
"--directory", "/absolute/path/to/Accounting/apps/mcp",
"run", "python", "-m", "nevios_mcp.server"
]
}
}
]
}
}
Add env either to the parent shell or to ~/.continue/.env.
Tip: separate keys per tool
Mint different keys for Claude Desktop and Cursor — when one gets revoked, the other keeps working. The dashboard's "last used" timestamp on each key tells you which tool actually did something.