Memoh Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Memoh Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
MCP server for managing Memoh AI agents from Claude Code, Cursor, or any MCP-compatible client.
| Category | Tools |
|---|---|
| Bots | list_bots, get_bot, create_bot, update_bot, delete_bot |
| Containers | get_container, create_container, delete_container, start_container, stop_container |
| Files | read_file, write_file, list_files |
| Skills | list_skills, write_skills, delete_skills |
| Memory | list_memories, add_memory, search_memory, delete_memory |
| Chat | send_message, get_messages |
| Settings | get_settings, update_settings |
| Heartbeat | heartbeat_logs |
| Health | health_check |
pip install mcp python-dotenvOr with uv:
uv pip install mcp python-dotenvSet environment variables (or create a .env file next to the server script):
export MEMOH_API=http://localhost:8080
export MEMOH_USER=admin
export MEMOH_PASS=your-passwordAdd to ~/.claude/settings.json:
{
"mcpServers": {
"memoh": {
"command": "python3",
"args": ["/path/to/memoh_mcp_server.py"]
}
}
}Or with a .env wrapper script:
{
"mcpServers": {
"memoh": {
"command": "/path/to/wrapper.sh"
}
}
}Where wrapper.sh:
#!/bin/bash
exec python3 /path/to/memoh_mcp_server.py "$@"Add to .cursor/mcp.json:
{
"mcpServers": {
"memoh": {
"command": "python3",
"args": ["/path/to/memoh_mcp_server.py"],
"env": {
"MEMOH_API": "http://localhost:8080",
"MEMOH_USER": "admin",
"MEMOH_PASS": "your-password"
}
}
}
}Once connected, your AI assistant can manage Memoh bots directly:
mcp Python package (MCP SDK)python-dotenv (optional, for .env file support)MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.