A Claude plugin marketplace that ships the Intelligo MCP server plus three Claude skills for natural-language access to Intelligo's GraphQL data layer.
| Component | Purpose |
|---|---|
intelligo MCP server (remote) |
OAuth-protected MCP at https://intelligo-mcp.intelligo-254.workers.dev/mcp. Exposes getSchema + queryIntelligo tools. |
query-intelligo skill |
Teaches Claude to compose minimal GraphQL queries against Intelligo. |
get-schema skill |
Teaches Claude to discover types one at a time before querying. |
onboarding skill |
First-time setup, OAuth + demo-password gate, troubleshooting. |
- Open Claude Desktop and switch to the Cowork tab.
- Click Customize in the left sidebar.
- Click + next to Personal plugins → Create plugin → Add marketplace.
- Enter
intelligogroup/claude-pluginand click Sync. - Open the synced marketplace, find the intelligo plugin, install it.
- The first time Claude calls a tool, an OAuth login page opens. Enter your email and the shared demo password (ask the Intelligo team).
/plugin marketplace add intelligogroup/claude-plugin
/plugin install intelligo@intelligo
/reload-plugins- Does not connect to a real Intelligo production tenant — the GraphQL data is mocked (seeded fixtures inside the Worker).
- Does not validate the demo password against any real auth system — it is a single shared gate.
.
├── .claude-plugin/
│ └── marketplace.json # Marketplace catalog
├── plugins/
│ └── intelligo/
│ ├── plugin.json # Plugin manifest
│ ├── .mcp.json # Remote MCP server pointer
│ └── skills/
│ ├── query-intelligo/SKILL.md
│ ├── get-schema/SKILL.md
│ └── onboarding/SKILL.md
└── README.md
Bump the version field in both marketplace.json and plugins/intelligo/plugin.json, commit, push. Users get the new version on next /plugin marketplace update intelligo (or auto-update if enabled).
MIT (or whatever Intelligo Group decides — replace this line).