PluginBench
MCP Server

pplog MCP Server

io.github.esaio/pplog

What is the pplog MCP server?

Official MCP server for pplog - a poem sharing service

How to install pplog

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • PPLOG_ACCESS_TOKEN
    required
    secret

    Access token for pplog API authentication

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "pplog": {
      "command": "npx",
      "args": [
        "-y",
        "@esaio/pplog-mcp-server"
      ],
      "env": {
        "PPLOG_ACCESS_TOKEN": "<YOUR_PPLOG_ACCESS_TOKEN>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "pplog": {
      "command": "npx",
      "args": [
        "-y",
        "@esaio/pplog-mcp-server"
      ],
      "env": {
        "PPLOG_ACCESS_TOKEN": "<YOUR_PPLOG_ACCESS_TOKEN>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "pplog": {
      "command": "npx",
      "args": [
        "-y",
        "@esaio/pplog-mcp-server"
      ],
      "env": {
        "PPLOG_ACCESS_TOKEN": "<YOUR_PPLOG_ACCESS_TOKEN>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "pplog": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@esaio/pplog-mcp-server"
      ],
      "env": {
        "PPLOG_ACCESS_TOKEN": "<YOUR_PPLOG_ACCESS_TOKEN>"
      }
    }
  }
}
Claude Code
claude mcp add pplog --env PPLOG_ACCESS_TOKEN=<YOUR_PPLOG_ACCESS_TOKEN> -- npx -y @esaio/pplog-mcp-server

Related MCP servers

Official MCP server for esa.io - a documentation sharing service for teams

View repository →