@pallio/mcp-server
v1.0.0
Published
MCP server for Pallio AI knowledge-base personas
Maintainers
Readme
@pallio/mcp-server
MCP server for Pallio AI knowledge-base personas. Use Pallio personas as tools in Claude Desktop, Cursor, VS Code, OpenClaw, or any MCP-compatible client.
Install
npm install -g @pallio/mcp-serverSetup
- Get your API key at pallioai.com → Settings → Developer API (requires Professional tier or higher)
- Find your persona ID from the persona URL or settings page
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"pallio": {
"command": "pallio-mcp",
"env": {
"PALLIO_API_KEY": "psk_live_YOUR_KEY"
}
}
}
}OpenClaw
mcpServers:
pallio:
command: pallio-mcp
env:
PALLIO_API_KEY: psk_live_YOUR_KEYAvailable Tools
| Tool | Description |
|------|-------------|
| pallio_chat | Chat with a persona (full RAG pipeline with citations) |
| pallio_search | Search a persona's knowledge base (raw chunks) |
| pallio_quiz | Generate quiz questions from persona knowledge |
| pallio_flashcards | Generate flashcards from persona knowledge |
| pallio_persona | Get persona metadata and KB statistics |
Environment Variables
| Variable | Required | Description |
|----------|----------|-------------|
| PALLIO_API_KEY | Yes | Your Pallio API key (psk_live_...) |
| PALLIO_API_BASE | No | API base URL (default: https://pallioai.com/api/v1) |
