{"id":50052382,"url":"https://github.com/metabase/metabase-codex-plugin","last_synced_at":"2026-05-21T10:09:00.894Z","repository":{"id":356525205,"uuid":"1230987900","full_name":"metabase/metabase-codex-plugin","owner":"metabase","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-08T12:01:35.000Z","size":15,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-08T14:07:31.683Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/metabase.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"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-06T14:11:48.000Z","updated_at":"2026-05-07T16:31:21.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/metabase/metabase-codex-plugin","commit_stats":null,"previous_names":["metabase/metabase-codex-plugin"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/metabase/metabase-codex-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/metabase%2Fmetabase-codex-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/metabase%2Fmetabase-codex-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/metabase%2Fmetabase-codex-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/metabase%2Fmetabase-codex-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/metabase","download_url":"https://codeload.github.com/metabase/metabase-codex-plugin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/metabase%2Fmetabase-codex-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33297254,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-21T02:57:32.698Z","status":"ssl_error","status_checked_at":"2026-05-21T02:57:31.990Z","response_time":62,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-05-21T10:09:00.156Z","updated_at":"2026-05-21T10:09:00.889Z","avatar_url":"https://github.com/metabase.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Metabase Codex Plugin\n\nThe official [Codex](https://developers.openai.com/codex/) MCP Plugin for [Metabase](https://www.metabase.com/). Developed and maintained by the Metabase Team.\n\n## What's included\n\n- Skill: `setup-metabase-mcp` (`skills/setup-metabase-mcp/SKILL.md`)\n- MCP server config: `.mcp.json`\n\nCurrent scope: **skills + MCP config only** (no rules, agents, commands, or hooks yet).\n\n## Connecting to your Metabase\n\nAfter installing the plugin, just ask Codex to set up your Metabase MCP server:\n\nJust type: \"Set up my Metabase MCP\"\n\nThe `setup-metabase-mcp` skill will guide you through the rest. Codex will:\n\n- Ask for your Metabase URL.\n- Verify that your Metabase is version 60 or higher.\n- Update your plugin's config with your Metabase's URL.\n\nYou'll need a valid login to your Metabase.\n\n## How to test the Metabase plugin locally\n\n1. Clone this repo.\n\n2. Set up a local marketplace that points at the cloned plugin.\n\n```sh\nmkdir -p ~/codex-local/.agents/plugins ~/codex-local/plugins\ncp --recursive /path/to/metabase-codex-plugin ~/codex-local/plugins/metabase\n```\n\nNote the `--recursive` flag; you need to copy the directory and its sub-directories because Codex caches a copy of the plugin and won't resolve symlinks when loading local plugins.\n\nThen create `~/codex-local/.agents/plugins/marketplace.json`:\n\n```json\n{\n  \"name\": \"local-dev\",\n  \"interface\": { \"displayName\": \"Local Dev\" },\n  \"plugins\": [\n    {\n      \"name\": \"metabase\",\n      \"source\": { \"source\": \"local\", \"path\": \"./plugins/metabase\" },\n      \"policy\": { \"installation\": \"AVAILABLE\", \"authentication\": \"ON_INSTALL\" },\n      \"category\": \"Data\"\n    }\n  ]\n}\n```\n\n3. Register the marketplace with Codex.\n\n```sh\ncodex plugin marketplace add ~/codex-local\n```\n\n4. Open Codex and install **Metabase** from the **Local Dev** marketplace:\n   - **Codex CLI:** run the `/plugins` slash command.\n   - **Codex Desktop:** open the **Plugins** menu and enable it there.\n\n   Then ask Codex to \"Set up my Metabase MCP\".\n\nCodex will automatically pick up the `setup-metabase-mcp` skill from the plugin and run it — no need to invoke it explicitly. The skill configures your `.mcp.json` at `~/.codex/plugins/cache/local-dev/metabase/\u003cversion\u003e/.mcp.json`.\n\n5. Once your `.mcp.json` is configured, restart Codex, and you should be good to go.\n\n## Attribution\n\nThe `setup-metabase-mcp` skill is adapted from the [Datadog MCP Setup](https://github.com/datadog-labs/cursor-plugin/blob/main/skills/datadog-mcp-setup/SKILL.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmetabase%2Fmetabase-codex-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmetabase%2Fmetabase-codex-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmetabase%2Fmetabase-codex-plugin/lists"}