AI/ML engineering MCP server for Neo — submit tasks, track execution, and retrieve outputs.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-neoairesearch-neo-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Connect your AI editor to Neo's remote execution backend. Describe an AI/ML task in plain language — Neo trains the model, builds the pipeline, or runs the workload on its backend, then writes all output files directly to your local machine.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Pi Coding Agent extension (CLI-first) — routes bash/read/grep/find/ls through lean-ctx CLI for strong token savings. Optional MCP bridge can register advanced tools.
Apify MCP Server
97% token reduction for AI coding sessions — zero deps, 21 languages, MCP server
MCP proxy that compresses prose fields (tool descriptions, etc.) using caveman rules. Same accuracy, fewer context tokens.
MCP Security Weekly
Get CVE alerts and security updates for io.github.NeoAIResearch/neo-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Connect your AI editor to Neo's remote execution backend. Describe an AI/ML task in plain language — Neo trains the model, builds the pipeline, or runs the workload on its backend, then writes all output files directly to your local machine.
Works with Claude Code, Cursor, Windsurf, VS Code (GitHub Copilot), Zed, Continue.dev, and OpenAI Codex CLI.
Get your API key at heyneo.com/dashboard → Settings → API Keys.
Your editor ──MCP──▶ neo-mcp server ──API──▶ Neo backend
│ │
└──────────────────▶ Local daemon
(writes files,
runs scripts)
neo_submit_task via MCPFiles are always written to your machine, never stored remotely.
Neo can also hold your third-party API keys (GitHub, HuggingFace, Anthropic, OpenRouter, OpenAI, AWS S3, Weights & Biases, Kaggle) locally so it can use them in tasks without re-prompting — keys stay on your machine, never sent to Neo's backend. Full guide: docs/INTEGRATIONS.md.
Pick pip (Python 3.11+) or npm (Node.js 18+) — both work identically from the editor's perspective.
pip install neo-mcp
Use
pipx install neo-mcpto avoid virtualenv conflicts.
npm install -g neo-mcp
Install Node.js 18+ if needed:
curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && apt-get install -y nodejs
Replace sk-v1-YOUR_KEY with your actual API key. Pick the pip or npm command based on which you installed.
pip:
claude mcp add --scope user neo \
-e NEO_SECRET_KEY=sk-v1-YOUR_KEY \
-- neo-mcp
npm:
claude mcp add --scope user neo \
-e NEO_SECRET_KEY=sk-v1-YOUR_KEY \
-- neo-mcp-daemon --mcp
Open a new Claude Code session after running — tools load at session start, not mid-session.
Open the config:
Ctrl+Shift+J (Windows/Linux) or Cmd+Shift+J (Mac) → Tools & MCP → New MCP Server~/.cursor/mcp.jsonpip:
{
"mcpServers": {
"neo": {
"command": "neo-mcp",
"env": { "NEO_SECRET_KEY": "sk-v1-YOUR_KEY" }
}
}
}
npm:
{
"mcpServers": {
"neo": {
"command": "neo-mcp-daemon",
"args": ["--mcp"],
"env": { "NEO_SECRET_KEY": "sk-v1-YOUR_KEY" }
}
}
}
Restart Cursor after editing the file directly. Changes via the GUI apply immediately.
Open the config:
Ctrl+, (Windows/Linux) or Cmd+, (Mac) → Cascade → Plugins (MCP servers) → Manage Plugins → View raw config~/.codeium/windsurf/mcp_config.jsonpip:
{
"mcpServers": {
"neo": {
"command": "neo-mcp",
"env": { "NEO_SECRET_KEY": "sk-v1-YOUR_KEY" }
}
}
}
npm:
{
"mcpServers": {
"neo": {
"command": "neo-mcp-daemon",
"args": ["--mcp"],
"env": { "NEO_SECRET_KEY": "sk-v1-YOUR_KEY" }
}
}
}
Changes apply on save — no restart needed.
Requires VS Code 1.99+.
Open the config:
Ctrl+Shift+P (Windows/Linux) or Cmd+Shift+P (Mac) → "Chat: Open Chat Customizations".vscode/mcp.json in your workspace root (create if it doesn't exist)pip:
{
"servers": {
"neo": {
"type": "stdio",
... [View full README on GitHub](https://github.com/neoairesearch/neo-mcp#readme)