Catalog
io.github.NeoResearchAI/MCPServer
OfficialNeo — AI/ML Engineering
AI/ML engineering MCP server for Neo — submit tasks, track execution, and retrieve outputs.
Submits AI/ML engineering tasks to Neo, tracks execution and retrieves outputs.
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_DIRrequiredAbsolute path to your project/git root where Neo writes files. Required for Postman and recommended for all clients.
claude_desktop_config.json
{
"mcpServers": {
"MCPServer": {
"command": "uvx",
"args": [
"neo-mcp"
],
"env": {
"NEO_SECRET_KEY": "<YOUR_NEO_SECRET_KEY>",
"NEO_ENVIRONMENT": "production",
"NEO_WORKSPACE_DIR": "<YOUR_NEO_WORKSPACE_DIR>"
}
}
}
}