AgentHubAgentHub

Inistate MCP

MCP ServerMCP Registry官方收录

io.github.Inistate/inistate-mcp · v1.0.3

MCP server for the Inistate platform: module discovery, entry management, and activity submission.

概览

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

安装

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

{
  "mcpServers": {
    "inistate-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "inistate-mcp"
      ],
      "env": {
        "INISTATE_API_TOKEN": "<INISTATE_API_TOKEN>"
      }
    }
  }
}

环境变量

INISTATE_API_TOKEN必填secret

Bearer token for Inistate API authentication.

INISTATE_API_BASE可选

Inistate API base URL.

相关资源

统一 Manifest

{
  "id": "io.github.Inistate/inistate-mcp",
  "type": "mcp-server",
  "version": "1.0.3",
  "displayName": "Inistate MCP",
  "description": "MCP server for the Inistate platform: module discovery, entry management, and activity submission.",
  "repository": {
    "url": "https://github.com/inistate/inistate-mcp",
    "source": "github"
  },
  "homepage": "https://inistate.com",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "inistate-mcp",
        "version": "1.0.3",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "INISTATE_API_TOKEN",
            "description": "Bearer token for Inistate API authentication.",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "INISTATE_API_BASE",
            "description": "Inistate API base URL."
          }
        ]
      }
    ],
    "remotes": [
      {
        "transport": "streamable-http",
        "url": "https://mcp.inistate.com/mcp"
      }
    ]
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.Inistate/inistate-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.Inistate%2Finistate-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Inistate MCP — MCP Server 安装与配置 · AgentHub