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_TOKENrequiredsecretAccess 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