AgentHubAgentHub

ZKshare

MCP ServerMCP Registry官方收录

io.github.sp0oby/zkshare · v1.0.1

ZKshare stdio MCP: store/prove/share, semantic search, sandbox proxy to HTTPS /api/v1/context.

概览

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

安装

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

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

环境变量

ZKSHARE_API_KEY必填secret

ZKshare API key (zk_live_…). Create one at zkshare.io/api-key — required for POST /api/v1/context.

ZKSHARE_API_URL可选

API origin including scheme; omit for production (https://zkshare.io). Use http://localhost:3000 only when self-hosting.

相关资源

统一 Manifest

{
  "id": "io.github.sp0oby/zkshare",
  "type": "mcp-server",
  "version": "1.0.1",
  "displayName": "ZKshare",
  "description": "ZKshare stdio MCP: store/prove/share, semantic search, sandbox proxy to HTTPS /api/v1/context.",
  "repository": {
    "url": "https://github.com/sp0oby/zkShare",
    "source": "github",
    "subfolder": "packages/zkshare-mcp"
  },
  "homepage": "https://zkshare.io/docs",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "zkshare-mcp",
        "version": "1.0.1",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "ZKSHARE_API_KEY",
            "description": "ZKshare API key (zk_live_…). Create one at zkshare.io/api-key — required for POST /api/v1/context.",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "ZKSHARE_API_URL",
            "description": "API origin including scheme; omit for production (https://zkshare.io). Use http://localhost:3000 only when self-hosting."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.sp0oby/zkshare",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.sp0oby%2Fzkshare/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
ZKshare — MCP Server 安装与配置 · AgentHub