jpytka666-jpg/aions-mcp-server
3.2
If you are the rightful owner of aions-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
AIONS MCP Server is a Model Context Protocol server designed to facilitate AI development workflows with over 40 integrated tools.
Tools
5
Resources
0
Prompts
0
AIONS MCP Server
MCP (Model Context Protocol) server with 40+ tools for AI development workflows.
Quick Start
Option 1: Pull from GHCR
# Pull the image
docker pull ghcr.io/YOUR_USERNAME/aions-mcp-server:latest
# Run with docker-compose
docker-compose up -d
Option 2: Build Locally
git clone https://github.com/YOUR_USERNAME/aions-mcp-server.git
cd aions-mcp-server
docker build -t aions-mcp-server .
docker-compose up -d
MCP Client Configuration
Kiro / Claude Desktop
Add to your MCP config (~/.kiro/settings/mcp.json or .kiro/settings/mcp.json):
{
"mcpServers": {
"aions": {
"command": "docker",
"args": ["exec", "-i", "aions-mcp", "python", "-m", "src", "stdio"],
"env": {}
}
}
}
Available Tools (40+)
Memory & Knowledge
memory_store- Store context to memorymemory_recall- Search memory by querycbms_search- Search CBMS knowledge chunkscbms_store- Store new knowledge chunkcbms_list- List CBMS chunks by conceptcbms_get_chunk- Get chunk by K[hex] ID
File Search (Everything)
fast_search- Blazing fast file searchfast_search_ext- Search by file extension
Project Scanner
project_scan_turbo- Fast project scanproject_scan_status- Check scan statusproject_scan_results- Get scan resultsproject_search- Search scanned filesproject_file_deps- Get file dependencies
Browser Automation
browser_navigate- Navigate to URLbrowser_snapshot- Get page accessibility snapshotbrowser_click- Click elementbrowser_type- Type into inputbrowser_screenshot- Take screenshotbrowser_get_text- Get page textbrowser_evaluate- Execute JavaScriptbrowser_close- Close browser
System Tools
docker_ps- List Docker containersdocker_images- List Docker imageswsl_run- Run command in WSLwsl_list- List WSL distributionsgit_status- Get Git statusgit_log- Get recent commitsnetwork_ping- Ping a hostsystem_health- System health check
Conversation Logging
conv_log- Log message to bufferconv_dump- Force dump bufferconv_status- Check buffer statusconv_set_threshold- Set auto-dump thresholdconv_history- Get log history
MCP Discovery
mcp_find- Search MCP servers catalogmcp_list- List available MCP serversmcp_info- Get MCP server details
Web
web_fetch- Fetch URL content
Environment Variables
| Variable | Default | Description |
|---|---|---|
FASTMCP_LOG_LEVEL | ERROR | Logging level |
CHROMA_PATH | /app/data/chroma | ChromaDB storage |
CBMS_MEMORY_DIR | /app/data/cbms_memory | CBMS chunks storage |
Data Persistence
Mount these volumes to persist data:
volumes:
- aions-data:/app/data # ChromaDB, CBMS
- aions-logs:/app/logs # Conversation dumps
- aions-scans:/app/scan_results # Scanner output
Troubleshooting
Container won't start
docker logs aions-mcp
MCP connection issues
- Ensure container is running:
docker ps - Test manually:
docker exec -i aions-mcp python -c "print('OK')" - Check MCP config path is correct
Tools not loading
Check server logs for import errors:
docker exec aions-mcp python -c "from src.server import mcp_server; print('OK')"
License
MIT