Catalog
io.github.NeoAIResearch/neo-mcp
Officialby NeoAIResearch · Python
Neo — AI/ML Engineering
AI/ML engineering MCP server for Neo — submit tasks, track execution, and retrieve outputs.
Submit ML engineering tasks, track execution, and retrieve outputs for AI workflows.
README not available yet.
Install
Configuration
Environment variables
NEO_SECRET_KEYrequiredsecretYour Neo API secret key (starts with sk-v1-). Get one at https://heyneo.com.
NEO_ENVIRONMENTdefault productionNeo backend environment: 'production' (default) or 'staging'.
NEO_WORKSPACE_DIRProject root where Neo tasks read and write files. Must be the git/project root.
claude_desktop_config.json
{
"mcpServers": {
"neo-mcp": {
"command": "uvx",
"args": [
"neo-mcp"
],
"env": {
"NEO_SECRET_KEY": "<YOUR_NEO_SECRET_KEY>",
"NEO_ENVIRONMENT": "production",
"NEO_WORKSPACE_DIR": "<YOUR_NEO_WORKSPACE_DIR>"
}
}
}
}