AgentHubAgentHub

pindoc

MCP ServerMCP Registry官方收录

io.github.var-gg/pindoc · v0.2.0

Code-pinned team memory for AI coding agents — typed artifacts, MCP-native, self-host.

概览

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

安装

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

{
  "mcpServers": {
    "pindoc": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/var-gg/pindoc:0.2.0"
      ],
      "env": {
        "PINDOC_DATABASE_URL": "<PINDOC_DATABASE_URL>"
      }
    }
  }
}

环境变量

PINDOC_DATABASE_URL必填

Postgres connection string. Use the bundled docker compose stack for the recommended pgvector setup.

PINDOC_BIND_ADDR可选

Daemon bind address. Loopback (127.0.0.1:5830) by default; set a non-loopback value only behind an IdP or trusted proxy.

相关资源

统一 Manifest

{
  "id": "io.github.var-gg/pindoc",
  "type": "mcp-server",
  "version": "0.2.0",
  "displayName": "pindoc",
  "description": "Code-pinned team memory for AI coding agents — typed artifacts, MCP-native, self-host.",
  "repository": {
    "url": "https://github.com/var-gg/pindoc",
    "source": "github"
  },
  "homepage": "https://github.com/var-gg/pindoc#quick-start",
  "distribution": {
    "packages": [
      {
        "registryType": "oci",
        "identifier": "ghcr.io/var-gg/pindoc:0.2.0",
        "transport": "streamable-http",
        "environmentVariables": [
          {
            "name": "PINDOC_DATABASE_URL",
            "description": "Postgres connection string. Use the bundled docker compose stack for the recommended pgvector setup.",
            "isRequired": true
          },
          {
            "name": "PINDOC_BIND_ADDR",
            "description": "Daemon bind address. Loopback (127.0.0.1:5830) by default; set a non-loopback value only behind an IdP or trusted proxy."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.var-gg/pindoc",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.var-gg%2Fpindoc/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
pindoc — MCP Server 安装与配置 · AgentHub