bigmac-mcp
Provides tools for interacting with a local Ollama instance, enabling AI agents to run local models for ask, summarize, classify, and delegated exploration tasks.
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., "@bigmac-mcpstart exploring myapp workspace for database connection details"
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.
bigmac-mcp
A small MCP server that turns a shared Ollama box into a team resource for Claude Code (or any MCP client): typed grunt-work tools plus delegated read-only repo exploration that runs an agent loop on the box's local models — so bulk reading and first-pass analysis burn zero frontier tokens.
Claude Code (your subscription, untouched)
│ MCP over streamable HTTP (:8434/mcp)
▼
bigmac-mcp (this server, runs on the Ollama box)
├── ask / summarize / classify / models / usage ──► Ollama (localhost:11434)
└── explore_start / explore_status / explore_result
└── spawns `opencode run --agent explore` in a synced workspace:
read-only file tools, step-capped, local model, cited synthesisTools
Tool | What it does |
| One-shot generation on the local model |
| Summarize text locally |
| Bulk classification, JSON-validated |
| Live model inventory + Ollama version |
| Token accounting since daemon start (what stayed off your cloud budget) |
| Start a delegated exploration job → job id |
| Poll / fetch the cited synthesis |
| List synced workspaces |
Related MCP server: mcp-local-llm
Delegated exploration
Jobs run OpenCode headless with a custom read-only agent
(opencode.json): edit/bash/webfetch/external_directory denied, step cap,
--dir jailed to the workspace, reasoningEffort: "none" so thinking models
don't burn minutes per step. Results must cite file:line — treat them as a
draft map and verify citations before relying on them.
Workspaces are plain directory snapshots under ~/delegate/workspaces/<name>
(ship them with tar | ssh, rsync, or similar — by design the server never
pulls from your VCS and holds no repo credentials). Snapshots auto-purge after
7 days; each job git inits the workspace if needed (OpenCode roots its jail
at a VCS marker).
Run it
Requires uv and, for exploration, the OpenCode binary on PATH.
uv sync
uv run python -m bigmac_mcp.server # streamable HTTP on 0.0.0.0:8434/mcpConnect a client:
claude mcp add --transport http bigmac http://<host>:8434/mcpConfiguration (env vars): OLLAMA_URL (default http://localhost:11434),
MCP_HOST/MCP_PORT (default 0.0.0.0:8434), DELEGATE_ROOT (default
~/delegate), OPENCODE_BIN, EXPLORE_WALL_SECONDS (default 900).
For production on macOS, run it as a LaunchDaemon (KeepAlive, logs +
newsyslog rotation) — see com.bigmac.mcp.plist in our infra repo for the
pattern.
⚠️ Security model — read this
The server has no authentication and binds all interfaces. It is designed for a trusted LAN/tailnet where everyone with network access is already trusted (in our case, the same people who hold the box's SSH key). Anyone who can reach the port can run generations and read synced workspaces. Do not expose it to untrusted networks; put a reverse proxy with auth in front if you need one.
Never sync secrets into workspaces — filter with .gitignore semantics plus a
deny-list (.env*, *.pem, *.key, id_*, …) on the client side.
License
MIT — see LICENSE.
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/TrueNorthIT/bigmac-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server