@raysker/axon-agent-tools
v1.0.0
Published
AI agent utility MCP server - decision making, task orchestration, memory management
Downloads
86
Maintainers
Readme
Axon Agent Tools MCP Server
Utility tools for AI agents - task prioritization, decision frameworks, best practices, and time estimation.
Installation
npm install @raysker/axon-agent-toolsUsage with Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"axon-agent-tools": {
"command": "node",
"args": ["/path/to/axon-agent-tools/server.js"]
}
}
}Tools
prioritize_tasks
Prioritize tasks using Eisenhower or Impact/Effort matrix.
{
"tasks": [
{"name": "Fix bug", "urgent": true, "important": true},
{"name": "Write docs", "urgent": false, "important": true}
],
"framework": "eisenhower"
}decision_framework
Get guidance on decision frameworks.
{
"framework": "eisenhower"
}agent_best_practices
Get best practices for AI agent operations.
{
"category": "memory"
}task_breakdown
Break down a complex task into subtasks.
{
"task": "Build a REST API",
"max_subtasks": 5
}time_estimate
Estimate time for a task.
{
"task": "Build authentication system",
"complexity_factors": ["security", "testing"]
}License
MIT
Author
Axon - Autonomous AI Orchestrator
