mcp
Integrates with Apple Calendar and Reminders via EventKit, and Apple Mail.
Integrates with Google People API for contacts and Google Flights for flight tracking.
Provides access to Google Calendar for personal calendar management.
Allows reading and writing to Google Sheets via Sheets API v4, plus spreadsheet discovery and sharing via Google Drive.
Enables reading iMessage chats and sending messages via AppleScript.
Offers read-only health visibility for macOS LaunchAgents and safe kickstart.
Provides analytics, blocking stats, and device activity from NextDNS.
Enables hybrid semantic and keyword search over an Obsidian vault.
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., "@mcpWhat's the weather in New York City?"
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.
mcp
Personal Model Context Protocol servers, packaged as a uv workspace and Claude Code/Codex plugin marketplaces.
Every tool lives under packages/ as a workspace member with a single shared uv.lock. Each tool is also a self-installing plugin: a code generator (scripts/gen_marketplace.py) derives both marketplace indexes and the platform-specific plugin files from each package's metadata.
Packages
Fourteen tools ship as marketplace plugins. Two packages support them and are not plugins.
Package | Version | What it does |
| 0.2.3 | Personal calendar via Google Calendar API, Family Calendar and Reminders via native EventKit |
| 0.2.2 | Contacts read/write via the Google People API |
| 0.1.6 | Flight price tracking (Google Flights, no API key) |
| 0.1.22 | Home maintenance operations: tasks, pest, services, HVAC |
| 0.1.8 | Read iMessage chats and send via AppleScript |
| 0.1.3 | Read-only health visibility for personal macOS LaunchAgents, plus safe kickstart |
| 1.0.43 | Lawn care: weather, irrigation, treatments, products |
| 0.1.34 | Apple Mail read, search, compose across accounts |
| 0.1.12 | NextDNS analytics, blocking stats, device activity |
| 0.1.7 | Hybrid semantic and keyword search over an Obsidian vault |
| 0.2.2 | Google Sheets read/write via the Sheets API v4, plus spreadsheet discovery and sharing via Drive |
| 0.1.26 | UniFi network: devices, clients, VLANs, firewall |
| 0.1.5 | Historical weather data via Open-Meteo |
| 1.0.381 | YNAB budget sync, payee cleanup, financial analysis |
| (library) | Shared helpers: logging, layered config, paths, errors. Not a plugin. |
| (daemon) | LaunchAgent that coordinates home ops across tools. Not a plugin. |
Each package has its own README with setup, tools, and usage. mcp-common and homeops-coordinator expose no MCP server and are excluded from the marketplace.
Related MCP server: Claude TypeScript MCP Servers
Installing a tool
Each packages/<tool>/ directory is the plugin source. When you install a plugin, Claude Code clones that directory into its plugin cache. On each session start, the plugin's hooks/install_deps.sh builds a persistent virtual environment (surviving plugin updates) and symlinks the tool's CLIs onto your PATH. There is no separate pip install step.
# Add this marketplace, then install a tool as a plugin
claude plugin marketplace add mrlesmithjr/mcp
claude plugin install unifi-tools@mrlesmithjr-mcpTools that need credentials (e.g. nextdns-tools, unifi-tools, ynab-tools) ship a configure command or document their config file; see the package README.
Every tool also generates a Codex plugin manifest (.codex-plugin/plugin.json) and installs cleanly via codex plugin marketplace add / codex plugin add. Codex uses an inline, plugin-root-relative MCP launcher (Codex does not expand ${CLAUDE_PLUGIN_ROOT} in a plugin's stdio argv the way Claude Code does) while Claude Code continues to use its existing .mcp.json definition. Verified end to end against a live codex exec session (issue #133).
Allow the tools in Claude Code: After installing any plugin, its MCP tools are deferred by default -- Claude Code does not pre-load their schemas, so they require an extra lookup step and are unlikely to be used automatically. Add each tool to permissions.allow in ~/.claude/settings.json. The tool namespace follows the pattern mcp__plugin_<slug>_<slug>__<tool_name>. Each package README lists the exact strings to add.
Layout
mcp/
├── pyproject.toml # Workspace root (virtual, non-distributable)
├── uv.lock # Single root lockfile
├── .python-version # Python floor (>=3.11)
├── packages/
│ ├── <tool>/ # One directory per tool; this IS the plugin source
│ │ ├── pyproject.toml # Package metadata (authoritative)
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json # GENERATED: Claude plugin metadata
│ │ ├── .codex-plugin/
│ │ │ └── plugin.json # GENERATED: Codex plugin metadata
│ │ ├── .mcp.json # GENERATED: Claude Code MCP definition
│ │ └── hooks/
│ │ ├── hooks.json # GENERATED: SessionStart hook wiring
│ │ ├── install_deps.sh # GENERATED: builds the persistent venv
│ │ └── run_server.sh # GENERATED: cold-start launcher
│ ├── mcp-common/ # Shared library (no plugin files)
│ └── homeops-coordinator/ # Daemon (no plugin files)
├── .claude-plugin/
│ └── marketplace.json # GENERATED: Claude marketplace index
├── .agents/plugins/
│ └── marketplace.json # GENERATED: Codex marketplace index
├── scripts/
│ ├── gen_marketplace.py # Generates all plugin + marketplace files
│ └── install_launchagents.sh # Manual LaunchAgent (re)install for dev
├── dev/
│ └── register_dev.py # Registers <tool>-dev MCP servers for local dev
└── docs/
└── migration.md # Per-tool subtree migration runbookThe six generated per-package files (the Claude and Codex plugin manifests, the shared MCP definition, and the three hook files) plus both marketplace indexes are produced by gen_marketplace.py. Do not hand-edit them. See CLAUDE.md for the full plugin-pattern details.
Developing
# Sync the workspace (installs all members + dev tools into .venv/)
# --all-packages is required for a virtual (non-package) workspace root
uv sync --all-packages
# Regenerate plugin + marketplace files after any pyproject change
uv run python scripts/gen_marketplace.py
# Verify generated files are up to date (CI check)
uv run python scripts/gen_marketplace.py --check
# Register dev-mode MCP servers (<tool>-dev, pointing at .venv/bin/)
uv run python dev/register_dev.pyRun tests per package, not in one combined invocation (test files share names across packages and collide when collected together):
uv run pytest packages/mcp-common
uv run pytest packages/weather-tools
uv run pytest packages/ynab-tools # requires: uv sync --all-packages --extra dashboardAdding a tool
Existing tools were migrated in from standalone repos via git subtree. To add another, follow the per-tool runbook in docs/migration.md.
Shared library
mcp-common (mrlesmithjr-mcp-common) is a dependency of every tool and is published separately to PyPI so plugins can resolve it when installed outside the workspace. See CLAUDE.md for the publish flow.
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
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/mrlesmithjr/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server