SnackMachine
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@SnackMachinesearch the library for recent entries about Python"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
SnackMachine
Modular snack registry, scheduler, spool, and MCP knowledge conduit.
Install
pip install snackmachineOr from source:
pip install -e .Related MCP server: akb
Structure
snackmachine/
├── registry.py # SnackSpec, SnackPlugin, SnackRegistry
├── base.py # SnackParam, SnackMeta, BaseSnack
├── scheduler.py # Cron-like maintenance scheduler
├── spool_reader.py # Spool feed parser
├── spool_writer.py # Spool append writer
└── conduit/
├── bridge.py # MCP query/status/chat routes
├── library_index.py # FTS5 across all 5 vault layers
├── ai_bridge.py # AI-ranked search with agent boosting
├── doclang.py # Markdown/wiki-link/section parser
└── knowledge_layer.py # Multi-agent shared memoryUsage
from snackmachine.registry import get_registry
from snackmachine.base import BaseSnack, SnackMeta
class MySnack(BaseSnack):
meta = SnackMeta(id="my-snack", name="My Snack", category="custom")
def execute(self, action=None, **kwargs):
return {"success": True}
# Register
get_registry().register(MySnack())Data
All mutable data lives in ~/.ucore/:
~/.ucore/indices/library.db— FTS5 search index~/.ucore/knowledge/shared.db— multi-agent memory~/.ucore/logs/— spool files~/.ucore/config/mcp-manifests/— MCP server manifests
Set SNACKMACHINE_DATA_DIR to override the data root.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/uDosGo/snackmachine'
If you have feedback or need assistance with the MCP directory API, please join our Discord server