AgentHubAgentHub

clude

MCP ServerMCP Registry官方收录

io.github.sebbsssss/clude · v3.0.4

Portable agent memory anchored on Solana. Local SQLite + vector recall, open export.

概览

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

安装

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

{
  "mcpServers": {
    "clude": {
      "command": "npx",
      "args": [
        "-y",
        "@clude/sdk"
      ],
      "env": {
        "CORTEX_API_KEY": "<CORTEX_API_KEY>"
      }
    }
  }
}

环境变量

CORTEX_API_KEY必填secret

Clude API key from https://clude.io/register

CORTEX_HOST_URL可选

Clude host URL (defaults to https://clude.io)

CLUDE_WALLET可选

Solana wallet public key used to sign and anchor memories (optional but recommended)

CLUDE_AGENT_NAME可选

Human-readable name for this agent instance

相关资源

统一 Manifest

{
  "id": "io.github.sebbsssss/clude",
  "type": "mcp-server",
  "version": "3.0.4",
  "displayName": "clude",
  "description": "Portable agent memory anchored on Solana. Local SQLite + vector recall, open export.",
  "repository": {
    "url": "https://github.com/sebbsssss/clude",
    "source": "github"
  },
  "homepage": "https://clude.io",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@clude/sdk",
        "version": "3.0.4",
        "runtimeHint": "npx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "CORTEX_API_KEY",
            "description": "Clude API key from https://clude.io/register",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "CORTEX_HOST_URL",
            "description": "Clude host URL (defaults to https://clude.io)"
          },
          {
            "name": "CLUDE_WALLET",
            "description": "Solana wallet public key used to sign and anchor memories (optional but recommended)"
          },
          {
            "name": "CLUDE_AGENT_NAME",
            "description": "Human-readable name for this agent instance"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.sebbsssss/clude",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.sebbsssss%2Fclude/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
clude — MCP Server 安装与配置 · AgentHub