Official agent plugins for Monid — discover and run hundreds of data endpoints (web scraping, people and company enrichment, social media, search results, media generation) through one interface.
This repo is the distribution package. It works with Claude Code, Cursor, Codex, Grok Build, Kimi Code, GitHub Copilot CLI, and VS Code.
npx plugins add monid-ai/pluginsAuto-detects every agent installed on your machine and installs to all of them.
/plugin marketplace add monid-ai/plugins
/plugin install monid@monid
Open Customize in the sidebar and search for monid, or install from the Cursor Marketplace.
Add this as a custom MCP server / connector in any MCP-capable client (ChatGPT, Claude.ai, Cursor, VS Code):
https://mcp.monid.ai/v1
It uses OAuth — there is no API key to paste.
The plugin ships two transports for the same capabilities, plus a skill that tells your agent which to use.
| MCP server | CLI | |
|---|---|---|
| Setup | None — OAuth on first use | npm i -g @monid-ai/cli + API key |
| Works without a shell | Yes | No |
| Results go to | Conversation context | Context or a file (-o) |
| Best for | Everything by default | Large results, scripting, CI |
The bundled monid skill detects which transport is available and routes accordingly. It prefers MCP, and falls back to the CLI when the MCP tools are absent or when a result is large enough that writing it to a file protects the context window.
monid_discover · monid_inspect · monid_run · monid_get_run · monid_stop_run · monid_list_runs · monid_balance · monid_list_workspaces · monid_list_resources · monid_get_resource · monid_get_resource_external · monid_list_resource_events · monid_release_resource
Discovery and inspection are free. Only monid_run spends workspace balance.
.claude-plugin/marketplace.json Claude Code marketplace catalog
.cursor-plugin/marketplace.json Cursor multi-plugin manifest
plugins/monid/
├── plugin.json Agent Plugins 1.0.0 manifest (Cursor, npx plugins)
├── .claude-plugin/plugin.json Claude Code plugin manifest
├── mcp.json Remote MCP server (streamable-http)
├── skills/monid/SKILL.md Transport-aware agent skill
└── assets/logo.svg
scripts/check-versions.mjs Version + manifest consistency guard
The plugin carries both an Agent Plugins root manifest and a Claude Code manifest, so every ecosystem discovers it from a single tree. mcp.json declares type: "streamable-http", which Claude Code accepts as an alias for http.
The plugin version is the source of truth. It is the update signal — Claude Code and Cursor pin an install to it, so users receive a changed SKILL.md only when this number moves.
| Artifact | Version | Bumps when |
|---|---|---|
| Plugin | plugins/monid/plugin.json |
SKILL.md or mcp.json changes |
| Skill | metadata.version in SKILL.md — must equal the plugin version |
same commit |
@monid-ai/cli |
Tracked independently in monid-ai/cli | CLI code changes |
| MCP server | Tracked independently, server-side | Tool contract changes |
The CLI and MCP server are not in lockstep with this repo. The skill declares a minimum CLI version (metadata.minimum-cli-version) and checks it at runtime; a newer CLI is always acceptable.
Run the guard before committing:
node scripts/check-versions.mjsIt fails the build if any manifest, marketplace entry, or skill version disagrees — and also rejects SKILL.md frontmatter fields outside the Agent Skills spec, which claude.ai and the OpenAI plugin importer reject at upload.
# 1. Edit SKILL.md and/or mcp.json, then:
node scripts/bump-version.mjs 1.1.0 # updates all 5 places + mirrors .mcp.json
node scripts/check-versions.mjs
npx plugins discover . # must print "1 skill, mcp"
git commit -am "..." && git pushClaude Code and npx plugins pick it up on the next refresh; Cursor re-indexes via Auto Refresh.
Then re-upload SKILL.md to ClawHub — it is the only channel that does not update itself — and update the row in the distribution database.
- Dashboard — https://app.monid.ai
- API keys — https://app.monid.ai/access/api-keys
- CLI — https://github.com/monid-ai/cli
- Example skills — https://github.com/monid-ai/skills
MIT — see LICENSE.