AgentHubAgentHub

Neo — AI/ML Engineering

MCP ServerMCP Registry官方收录

io.github.NeoAIResearch/neo-mcp · v0.5.5

AI/ML engineering MCP server for Neo — submit tasks, track execution, and retrieve outputs.

概览

Neo — AI/ML Engineering 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "neo-mcp": {
      "command": "uvx",
      "args": [
        "neo-mcp"
      ],
      "env": {
        "NEO_SECRET_KEY": "<NEO_SECRET_KEY>"
      }
    }
  }
}

环境变量

NEO_SECRET_KEY必填secret

Your Neo API secret key (starts with sk-v1-). Get one at https://heyneo.com.

NEO_ENVIRONMENT可选

Neo backend environment: 'production' (default) or 'staging'.

NEO_WORKSPACE_DIR可选

Project root where Neo tasks read and write files. Must be the git/project root.

相关资源

统一 Manifest

{
  "id": "io.github.NeoAIResearch/neo-mcp",
  "type": "mcp-server",
  "version": "0.5.5",
  "displayName": "Neo — AI/ML Engineering",
  "description": "AI/ML engineering MCP server for Neo — submit tasks, track execution, and retrieve outputs.",
  "repository": {
    "url": "https://github.com/NeoAIResearch/neo-mcp",
    "source": "github",
    "subfolder": "python"
  },
  "homepage": "https://heyneo.com",
  "distribution": {
    "packages": [
      {
        "registryType": "pypi",
        "identifier": "neo-mcp",
        "version": "0.5.5",
        "runtimeHint": "uvx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "NEO_SECRET_KEY",
            "description": "Your Neo API secret key (starts with sk-v1-). Get one at https://heyneo.com.",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "NEO_ENVIRONMENT",
            "description": "Neo backend environment: 'production' (default) or 'staging'."
          },
          {
            "name": "NEO_WORKSPACE_DIR",
            "description": "Project root where Neo tasks read and write files. Must be the git/project root."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.NeoAIResearch/neo-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.NeoAIResearch%2Fneo-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Neo — AI/ML Engineering — MCP Server 安装与配置 · AgentHub