An MCP (Model Context Protocol) server that connects AI assistants like Claude to the Pickaxe platform. Manage your AI agents, knowledge bases, users, and analytics directly through natural language.
If you're building AI agents on Pickaxe, this MCP server lets you:
- Analyze agent conversations - Review chat history to identify knowledge gaps and improve agent performance
- Manage knowledge bases - Create, update, and connect documents to your agents without leaving your AI workflow
- Handle user management - Create users, manage access, send invitations, and track usage
- Work across multiple studios - Seamlessly switch between different Pickaxe studios in a single session
- Automate workflows - Let Claude handle repetitive Pickaxe admin tasks
| Category | Tools |
|---|---|
| Studios | List configured studios, switch between them |
| Chat History | Fetch and analyze agent conversation logs |
| Documents | Create, list, get, delete, connect/disconnect to agents |
| Users | Create, list, get, update, delete, invite |
| Products | List available products and bundles |
| Memory | List memory schemas, retrieve user memories |
- Node.js 18+
- A Pickaxe account with API access
- Your Pickaxe Studio API key(s)
npx mcp-pickaxeOr install globally:
npm install -g mcp-pickaxegit clone https://github.com/aplaceforallmystuff/mcp-pickaxe.git
cd mcp-pickaxe
npm install
npm run build- Log in to Pickaxe Studio
- Navigate to Settings > API
- Copy your Studio API key (starts with
studio-)
Add to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"pickaxe": {
"command": "node",
"args": ["/path/to/mcp-pickaxe/dist/index.js"],
"env": {
"PICKAXE_STUDIO_MAIN": "studio-your-api-key-here"
}
}
}
}Add to ~/.claude.json:
{
"mcpServers": {
"pickaxe": {
"command": "node",
"args": ["/path/to/mcp-pickaxe/dist/index.js"],
"env": {
"PICKAXE_STUDIO_MAIN": "studio-your-api-key-here"
}
}
}
}To work with multiple Pickaxe studios, add multiple environment variables:
{
"env": {
"PICKAXE_STUDIO_PRODUCTION": "studio-xxx-xxx-xxx",
"PICKAXE_STUDIO_STAGING": "studio-yyy-yyy-yyy",
"PICKAXE_STUDIO_DEV": "studio-zzz-zzz-zzz",
"PICKAXE_DEFAULT_STUDIO": "PRODUCTION"
}
}Then specify which studio to use in your requests:
- If you set
PICKAXE_DEFAULT_STUDIO, that studio is used when none is specified - If only one studio is configured, it's used automatically
- Otherwise, pass
studio="STAGING"(or similar) to any tool
Once configured, you can interact with Pickaxe through natural language:
"Show me the last 20 conversations from my support agent"
"What questions are users asking that my agent can't answer?"
"Create a new document called 'FAQ' with this content: [your content]"
"Connect the FAQ document to my customer support agent"
"List all documents in my knowledge base"
"Show me all users and their usage stats"
"Create a new user with email user@example.com and give them access to the Pro product"
"Send invitations to these emails: [list of emails]"
"List all users in my staging studio"
"Compare the documents between production and staging"
studios_list- List all configured studios and the current default
chat_history- Fetch conversation history for an agent- Parameters:
pickaxeId,skip,limit,format("messages" or "raw"),studio
- Parameters:
doc_create- Create document from content or URLdoc_list- List all documents (with pagination)doc_get- Get a specific documentdoc_delete- Delete a documentdoc_connect- Link document to an agentdoc_disconnect- Unlink document from an agent
user_list- List all users with access and usage infouser_get- Get a specific user by emailuser_create- Create a new useruser_update- Update user details, products, or usageuser_delete- Delete a useruser_invite- Send email invitations
products_list- List available products/bundles
memory_list- List memory schemasmemory_get_user- Get collected memories for a user
# Run in development mode (auto-reloads)
npm run dev
# Build for production
npm run build
# Run the built version
npm startEnsure you have at least one PICKAXE_STUDIO_* environment variable set in your MCP config.
Check that the studio name matches exactly (case-insensitive). Run studios_list to see available options.
Your API key is invalid or expired. Get a new one from Pickaxe Studio settings.
Your API key doesn't have permission for this operation. Check your Pickaxe account permissions.
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
MIT License - see LICENSE for details.