Model Context Protocol
Connect Claude Code, Cursor, VS Code, and other MCP clients to NEO. The editor stays in control of the conversation. NEO does the ML engineering.
Claude Code (recommended)
pip install neo-mcp
claude mcp add --scope user neo \
-e NEO_SECRET_KEY=sk-v1-your-key \
-- python3 -m neo_mcpCursor / VS Code / other clients
{
"mcpServers": {
"neo": {
"command": "python3",
"args": ["-m", "neo_mcp"],
"env": {
"NEO_SECRET_KEY": "sk-v1-your-key"
}
}
}
}Claude Code, Cursor, VS Code, or another MCP-compatible client sends the task to the local neo-mcp server.
NEO receives the task with enough context to plan, run code, ask for feedback, and return the finished transcript.
Status, messages, files, and follow-up questions come back through the same editor instead of a separate dashboard loop.
NEO handles task submit, status polling, feedback, and transcript retrieval so the editor can stay focused on the conversation.
Provider keys stay on your machine and are exposed to tasks as environment variables when a run actually needs them.
The same server works across Claude Code, Cursor, VS Code, Windsurf, Zed, Continue, Codex CLI, and other MCP clients.
Install neo-mcp, add your NEO Secret Key, and start routing ML tasks from your editor.
pip install neo-mcp