AgentHubAgentHub

Palinode

MCP ServerMCP Registry官方收录

io.github.phasespace-labs/palinode · v0.8.9

Git-versioned markdown memory for AI agents: save, search, compact, lint, and audit.

概览

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

安装

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

{
  "mcpServers": {
    "palinode": {
      "command": "uvx",
      "args": [
        "palinode"
      ],
      "env": {
        "PALINODE_DIR": "<PALINODE_DIR>"
      }
    }
  }
}

环境变量

PALINODE_DIR必填

Path to the markdown-memory directory (e.g. ~/.palinode). Created if missing.

PALINODE_API_HOST可选

Host where the back-end palinode-api process is reachable

PALINODE_API_PORT可选

Port for palinode-api

PALINODE_API_TOKEN可选secret

Optional bearer token enforced on every palinode-api request other than /health. Required when PALINODE_API_BIND_INTENT=public. Generate with: python -c 'import secrets; print(secrets.token_urlsafe(32))'.

PALINODE_API_TOKEN_FILE可选secret

Path to a file containing the bearer token (alternative to PALINODE_API_TOKEN; for docker-secrets style deployments)

PALINODE_DIR必填

Path to the markdown-memory directory

PALINODE_MCP_HTTP_HOST可选

Bind host for the MCP HTTP server. Defaults to loopback; set to 0.0.0.0 only with intentional network exposure (paired with PALINODE_API_BIND_INTENT=public on the back-end).

PALINODE_MCP_HTTP_PORT可选

Port for the MCP HTTP server

PALINODE_API_HOST可选

Host where the back-end palinode-api is reachable

PALINODE_API_PORT可选

Port for palinode-api

PALINODE_API_TOKEN可选secret

Bearer token enforced by palinode-api. Required when binding non-loopback. Generate with: python -c 'import secrets; print(secrets.token_urlsafe(32))'.

PALINODE_API_TOKEN_FILE可选secret

Path to a file containing the bearer token (alternative to PALINODE_API_TOKEN)

相关资源

统一 Manifest

{
  "id": "io.github.phasespace-labs/palinode",
  "type": "mcp-server",
  "version": "0.8.9",
  "displayName": "Palinode",
  "description": "Git-versioned markdown memory for AI agents: save, search, compact, lint, and audit.",
  "repository": {
    "url": "https://github.com/phasespace-labs/palinode",
    "source": "github"
  },
  "homepage": "https://github.com/phasespace-labs/palinode",
  "distribution": {
    "packages": [
      {
        "registryType": "pypi",
        "identifier": "palinode",
        "version": "0.8.9",
        "runtimeHint": "uvx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "PALINODE_DIR",
            "description": "Path to the markdown-memory directory (e.g. ~/.palinode). Created if missing.",
            "isRequired": true
          },
          {
            "name": "PALINODE_API_HOST",
            "description": "Host where the back-end palinode-api process is reachable"
          },
          {
            "name": "PALINODE_API_PORT",
            "description": "Port for palinode-api"
          },
          {
            "name": "PALINODE_API_TOKEN",
            "description": "Optional bearer token enforced on every palinode-api request other than /health. Required when PALINODE_API_BIND_INTENT=public. Generate with: python -c 'import secrets; print(secrets.token_urlsafe(32))'.",
            "isSecret": true
          },
          {
            "name": "PALINODE_API_TOKEN_FILE",
            "description": "Path to a file containing the bearer token (alternative to PALINODE_API_TOKEN; for docker-secrets style deployments)",
            "isSecret": true
          }
        ]
      },
      {
        "registryType": "pypi",
        "identifier": "palinode",
        "version": "0.8.9",
        "runtimeHint": "uvx",
        "transport": "streamable-http",
        "environmentVariables": [
          {
            "name": "PALINODE_DIR",
            "description": "Path to the markdown-memory directory",
            "isRequired": true
          },
          {
            "name": "PALINODE_MCP_HTTP_HOST",
            "description": "Bind host for the MCP HTTP server. Defaults to loopback; set to 0.0.0.0 only with intentional network exposure (paired with PALINODE_API_BIND_INTENT=public on the back-end)."
          },
          {
            "name": "PALINODE_MCP_HTTP_PORT",
            "description": "Port for the MCP HTTP server"
          },
          {
            "name": "PALINODE_API_HOST",
            "description": "Host where the back-end palinode-api is reachable"
          },
          {
            "name": "PALINODE_API_PORT",
            "description": "Port for palinode-api"
          },
          {
            "name": "PALINODE_API_TOKEN",
            "description": "Bearer token enforced by palinode-api. Required when binding non-loopback. Generate with: python -c 'import secrets; print(secrets.token_urlsafe(32))'.",
            "isSecret": true
          },
          {
            "name": "PALINODE_API_TOKEN_FILE",
            "description": "Path to a file containing the bearer token (alternative to PALINODE_API_TOKEN)",
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.phasespace-labs/palinode",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.phasespace-labs%2Fpalinode/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Palinode — MCP Server 安装与配置 · AgentHub