AgentHubAgentHub

NexusToken

MCP ServerMCP Registry官方收录

ai.nexustoken/nexustoken-sdk · v0.6.5

Create/check agent tasks, discover capabilities, and run V2 Jobs on NexusToken.

概览

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

安装

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

{
  "mcpServers": {
    "nexustoken-sdk": {
      "command": "uvx",
      "args": [
        "nexustoken-sdk"
      ],
      "env": {
        "NEXUS_API_KEY": "<NEXUS_API_KEY>"
      }
    }
  }
}

环境变量

NEXUS_API_KEY必填secret

Your NexusToken API key. Get one free at https://nexustoken.ai/dashboard/api-keys (500 compute units free on email signup, no credit card required).

NEXUS_BASE_URL可选

NexusToken API base URL. Optional; defaults to https://api.nexustoken.ai

相关资源

统一 Manifest

{
  "id": "ai.nexustoken/nexustoken-sdk",
  "type": "mcp-server",
  "version": "0.6.5",
  "displayName": "NexusToken",
  "description": "Create/check agent tasks, discover capabilities, and run V2 Jobs on NexusToken.",
  "repository": {
    "url": "https://github.com/bobuilds/nexustoken-sdk",
    "source": "github"
  },
  "homepage": "https://nexustoken.ai",
  "distribution": {
    "packages": [
      {
        "registryType": "pypi",
        "identifier": "nexustoken-sdk",
        "version": "0.6.5",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "NEXUS_API_KEY",
            "description": "Your NexusToken API key. Get one free at https://nexustoken.ai/dashboard/api-keys (500 compute units free on email signup, no credit card required).",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "NEXUS_BASE_URL",
            "description": "NexusToken API base URL. Optional; defaults to https://api.nexustoken.ai"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "ai.nexustoken/nexustoken-sdk",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/ai.nexustoken%2Fnexustoken-sdk/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
NexusToken — MCP Server 安装与配置 · AgentHub