Agent Plugins Marketplace
All plugins

bridgeapp

v0.3.0

Connects Codex to a BridgeApp workspace over MCP — tasks, chats, threads, pages, and projects — with skills for the workflows around them.

CodexClaude Code6 Skills1 MCP serverStreamable HTTP

By Math & Magic0 GitHub starsUpdated 15 hours ago

Directory evidence

Runtimes
Codex and Claude Code
Parsed components
7 skill or MCP entries
Source updated
Sep 2, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install bridgeapp for Codex and Claude Code

Installs for the current user
codex plugin marketplace add MathAndMagic/bridgeapp-plugin
codex plugin marketplace upgrade bridgeapp
codex plugin add bridgeapp@bridgeapp

Paste and run these commands in a terminal with Codex. They add and refresh the bridgeapp catalog, then install this plugin.

Compatibility: the page URL and API slug “bridgeapp” remain stable.

  • Codex: bridgeapp@agent-plugin-marketplacebridgeapp@bridgeapp

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/MathAndMagic/bridgeapp-plugin

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/bridgeapp/.

Plugin files

plugins/bridgeapp/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/bridgeapp-context/SKILL.md
├── skills/bridgeapp-investigation/SKILL.md
├── skills/bridgeapp-links/SKILL.md
├── skills/bridgeapp-task/SKILL.md
├── skills/bridgeapp-task-creation/SKILL.md
├── skills/bridgeapp-thread/SKILL.md
└── .mcp.json

Included Skills6

bridgeapp-contextskills/bridgeapp-context/SKILL.md

Use when the user points at something in BridgeApp — a task key like DEV-1234, a message or thread, a page, a project — or shares a BridgeApp link, and you need the surrounding context before acting. Covers how to walk from one BridgeApp object to everything it hangs off without crawling the whole workspace.

bridgeapp-investigationskills/bridgeapp-investigation/SKILL.md

Use when the user asks what is going on with a bug, a regression, or a surprising behaviour and the trail runs through BridgeApp — a reported task, a chat thread, a comment — as well as the code. Produces an evidence-backed diagnosis, not a fix.

bridgeapp-linksskills/bridgeapp-links/SKILL.md

Use when you need to give a human a link into BridgeApp — to a task, a chat, a thread, a message, a page, a call, a database entry, an agent — or when you are reading BridgeApp content and hit a mention token, a task key, or an internal link you need to resolve. Covers the URL shapes for web and the desktop app, the route map, and the mention syntax.

bridgeapp-taskskills/bridgeapp-task/SKILL.md

Use when someone hands you a BridgeApp task — a key like DEV-1234, a task link, or a shared task — and asks you to read it, plan it, or work on it. Covers the task's own graph, the project it belongs to, and how to find out which repository and conventions apply.

bridgeapp-task-creationskills/bridgeapp-task-creation/SKILL.md

Use when the user asks to turn something into a BridgeApp task — from a chat message, a bug you just found, a piece of work you were discussing — or says "create a task for this". Covers filling the task properly and what to reply.

bridgeapp-threadskills/bridgeapp-thread/SKILL.md

Use when someone hands you a BridgeApp message or thread — a shared message, a permalink, or a chat/thread/message id — and asks you to read it, summarize it, or act on it. Covers reading a conversation to the end and picking up the agent activity inside it.

MCP servers1

bridgeappStreamable HTTP
url
https://mcp.bridgeapp.ai/mcp

Plugin manifests2

plugins/bridgeapp/.codex-plugin/plugin.json
{
  "name": "bridgeapp",
  "version": "0.3.0",
  "description": "Connects Codex to a BridgeApp workspace over MCP — tasks, chats, threads, pages, and projects — with skills for the workflows around them.",
  "author": {
    "name": "Math & Magic",
    "email": "[email protected]",
    "url": "https://bridgeapp.ai"
  },
  "homepage": "https://bridgeapp.ai/agent-setup.md",
  "repository": "https://github.com/MathAndMagic/bridgeapp-plugin",
  "keywords": [
    "bridgeapp",
    "mcp",
    "tasks",
    "chat",
    "workspace",
    "project-management"
  ],
  "skills": "./skills/",
  "mcpServers": "./.mcp.json",
  "interface": {
    "displayName": "BridgeApp",
    "shortDescription": "Work your BridgeApp workspace",
    "longDescription": "Read and act on your BridgeApp workspace under your own account's permissions: tasks with their comments, subtasks, blockers and plan documents; chats and threads; pages; projects and their participants. The bundled skills teach Codex how to work from a task, read a thread to the end, create well-formed tasks, and build links back into the workspace.",
    "developerName": "Math & Magic",
    "category": "Productivity",
    "capabilities": [
      "Interactive",
      "Read",
      "Write"
    ],
    "websiteURL": "https://bridgeapp.ai",
    "privacyPolicyURL": "https://bridgeapp.ai/legal/privacy-policy",
    "termsOfServiceURL": "https://bridgeapp.ai/legal/terms-of-service",
    "defaultPrompt": [
      "Show my ongoing BridgeApp tasks",
      "Read BridgeApp task DEV-1234 and plan the work",
      "Turn this bug into a BridgeApp task"
    ],
    "brandColor": "#1154EA",
    "composerIcon": "./assets/icon.svg",
    "logo": "./assets/logo.png",
    "screenshots": []
  }
}
plugins/bridgeapp/.claude-plugin/plugin.json
{
  "name": "bridgeapp",
  "description": "Plugin that includes the BridgeApp MCP server and skills for working with a BridgeApp workspace",
  "version": "0.3.0",
  "author": {
    "name": "Math & Magic"
  },
  "userConfig": {
    "endpoint": {
      "type": "string",
      "title": "MCP server URL",
      "description": "The BridgeApp MCP endpoint. Keep the default for the hosted service; a self-hosted workspace shows its own endpoint under Agents → Connect Apps.",
      "default": "https://mcp.bridgeapp.ai/mcp"
    }
  },
  "mcpServers": {
    "bridgeapp": {
      "type": "http",
      "url": "${user_config.endpoint}"
    }
  }
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[bridgeapp on Agent Plugins Marketplace](https://pluginsmp.com/plugins/bridgeapp)