{"id":50305208,"url":"https://github.com/soil-dev/loomiomcp","last_synced_at":"2026-05-28T16:00:28.787Z","repository":{"id":360677796,"uuid":"1251202366","full_name":"soil-dev/loomiomcp","owner":"soil-dev","description":"Loomio tools for Claude. Local install via npx, org-wide via Custom Connectors. Read-only mode supported.","archived":false,"fork":false,"pushed_at":"2026-05-27T11:05:00.000Z","size":102,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-05-27T13:07:47.311Z","etag":null,"topics":["claude","claude-code","claude-desktop","collaboration","governance","loomio","mcp","mcp-server","model-context-protocol","typescript"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/soil-dev.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-27T10:46:25.000Z","updated_at":"2026-05-27T11:05:04.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/soil-dev/loomiomcp","commit_stats":null,"previous_names":["soil-dev/loomiomcp"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/soil-dev/loomiomcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soil-dev%2Floomiomcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soil-dev%2Floomiomcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soil-dev%2Floomiomcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soil-dev%2Floomiomcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/soil-dev","download_url":"https://codeload.github.com/soil-dev/loomiomcp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soil-dev%2Floomiomcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33615490,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-28T02:00:06.440Z","response_time":99,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["claude","claude-code","claude-desktop","collaboration","governance","loomio","mcp","mcp-server","model-context-protocol","typescript"],"created_at":"2026-05-28T16:00:19.112Z","updated_at":"2026-05-28T16:00:28.770Z","avatar_url":"https://github.com/soil-dev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# loomiomcp\n\nModel Context Protocol server for [Loomio](https://www.loomio.com). Lets\nClaude (Desktop, Code, or web Projects via Custom Connector) read and\nwrite Loomio discussions, polls, comments, and group memberships in\nplain English. Targets Loomio's **b2** API — the canonical surface\ndocumented at [/help/api2](https://www.loomio.com/help/api2) and the\nnamespace where the controllers actually live in the open-source repo.\n\nTools (b2, per-user `?api_key=`):\n\n- `get_discussion(id_or_key)` — fetch one discussion\n- `list_discussions(group_id, status?, limit?, offset?)` — list a group's discussions\n- `create_discussion(title, group_id, …)` — start a new one\n- `get_poll(id_or_key)` — fetch one poll\n- `list_polls(group_id, status?, limit?, offset?)` — list a group's polls\n- `create_poll(title, poll_type, …)` — start a new poll\n- `list_memberships(group_id, limit?, offset?)` — list a group's members with email\n  addresses (caller must be a group admin)\n- `list_groups({start_id?, end_id?, stop_after_consecutive_misses?})` — enumerate\n  visible groups by probing `b2/polls` across an id range. Loomio has no\n  api-key-authed list-groups endpoint; this is the workaround. Default scans\n  are ~50–200 outbound calls; a single invocation is capped at 500 ids\n- `manage_memberships({group_id, emails, remove_absent})` — add and (with\n  `remove_absent: true`) **remove** members. See SECURITY.md before using\n  `remove_absent`.\n- `create_comment(discussion_id, body, body_format?)` — reply on a discussion\n\nOpt-in admin tools (b3, server-instance secret `?b3_api_key=`):\n\nSet `LOOMIO_B3_API_KEY` to enable. Only useful for Loomio instance operators.\n\n- `deactivate_user(id)` — disable a user account instance-wide\n- `reactivate_user(id)` — re-enable a previously deactivated user\n\n## Quick start (stdio, local)\n\n```\nLOOMIO_API_KEY=… npx loomiomcp\n```\n\nAdd it to your Claude Desktop / Claude Code config the same way you would\nany stdio MCP server.\n\n## Remote (HTTP)\n\nSee DEPLOY.md for Cloud Run.\n\n## Auth\n\nLoomio's b2 API authenticates by API key passed as a `?api_key=…` query\nparameter. The connector injects it server-side; it never reaches the\nMCP client. Generate one in Loomio under your profile → API keys.\n\nThe optional b3 admin namespace uses a different secret (`?b3_api_key=…`,\nvalidated against `ENV['B3_API_KEY']` on the Loomio server, \u003e16 chars).\nOnly relevant if you operate a Loomio instance.\n\n## Read-only mode\n\nSet `LOOMIO_MCP_READONLY=1` to register only the read tools\n(`get_*` / `list_*`). All write tools (`create_*`, `manage_*`) are\nskipped at server-init time. This is the mode the Cloud Run deployment\nruns in.\n\n## Docs map\n\n| File | When to read |\n|---|---|\n| [INSTALL.md](INSTALL.md) | \"I want to use this locally with Claude Desktop / Code today\" |\n| [DEPLOY.md](DEPLOY.md) | \"I want to run this as a remote HTTP/OAuth endpoint\" |\n| [HOWTO.md](HOWTO.md) | \"I want example prompts and use cases\" |\n| [DESIGN.md](DESIGN.md) | \"I want to understand the load-bearing choices\" |\n| [NOTES-ON-LOOMIO-API.md](NOTES-ON-LOOMIO-API.md) | \"I'm hitting a weird Loomio behaviour, or want the line-by-line endpoint reference\" |\n| [SECURITY.md](SECURITY.md) | \"I'm doing a security review or rotating secrets\" |\n| [OPTIMIZATIONS.md](OPTIMIZATIONS.md) | \"I want observability / usage analytics queries\" |\n| [CONTRIBUTING.md](CONTRIBUTING.md) | \"I want to add a tool or send a PR\" |\n| [CHANGELOG.md](CHANGELOG.md) | \"What changed?\" |\n\n## License\n\nApache-2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoil-dev%2Floomiomcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsoil-dev%2Floomiomcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoil-dev%2Floomiomcp/lists"}