Skip to main content
ClaudeWave

Connect your agent to your PodMule podcast workspace over MCP — marketplace, plugin and skills.

MCP ServersRegistry oficial0 estrellas0 forksJavaScriptMITActualizado today
ClaudeWave Trust Score
87/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Documented (README)
Last scanned: 8/19/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/Squared-Lemons-Ltd/podmule-plugin
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "podmule-plugin": {
      "command": "node",
      "args": ["/path/to/podmule-plugin/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/Squared-Lemons-Ltd/podmule-plugin and follow its README for install instructions.
Casos de uso

Resumen de MCP Servers

# PodMule plugin

Connect your agent to your own [PodMule](https://podmule.com) podcast workspace — shows, episodes, transcripts, the knowledge base built from your back catalogue, clips, guest CRM and interview bookings.

The plugin bundles two things: a reference to PodMule's remote MCP server, and five skills that tell your agent when to use which part of it. Connecting without the skills gives you three tools and no idea how to drive them.

**You need a PodMule workspace.** This plugin talks to your data; it does nothing on its own. You sign in with your normal PodMule account the first time your agent connects — there is no API key to copy. If you don't have an account yet, start at [podmule.com](https://podmule.com).

Connector URL: `https://app.podmule.com/mcp` · Full setup guide: [app.podmule.com/mcp-setup](https://app.podmule.com/mcp-setup)

## Install

Everywhere except Claude Code, the whole install is the repo name — `Squared-Lemons-Ltd/podmule-plugin` — pasted into a Plugins settings screen.

### Claude Code

```
/plugin marketplace add Squared-Lemons-Ltd/podmule-plugin
/plugin install podmule@podmule
```

Then `/mcp` and sign in. A browser window opens for PodMule's consent screen; if you belong to more than one workspace you pick which one the connection uses.

> Non-interactive sessions (`claude -p`, the Agent SDK) cannot complete the OAuth flow and will report the tools as unavailable. Authorise once from an interactive session first.

### Claude Desktop, ChatGPT and Codex

All three take the repo name directly. Open the **Plugins** section, choose **Add custom**, and enter:

```
Squared-Lemons-Ltd/podmule-plugin
```

Then install **PodMule** and sign in. One package, read by all of them.

> The ChatGPT **chat** surface is a separate thing and is not reachable this way — it needs a connector ID minted by your own developer-mode registration, which no distributable package can carry.

### One click, other surfaces

[![Add to Cursor](https://img.shields.io/badge/Cursor-Add_PodMule-000000?style=flat-square&logo=cursor&logoColor=white)](cursor://anysphere.cursor-deeplink/mcp/install?name=podmule&config=eyJ0eXBlIjoiaHR0cCIsInVybCI6Imh0dHBzOi8vYXBwLnBvZG11bGUuY29tL21jcCJ9)
[![Add to VS Code](https://img.shields.io/badge/VS_Code-Add_PodMule-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=podmule&config=%7B%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fapp.podmule.com%2Fmcp%22%7D)
[![Add to VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Add_PodMule-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=podmule&config=%7B%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fapp.podmule.com%2Fmcp%22%7D&quality=insiders)
[![Add to LM Studio](https://files.lmstudio.ai/deeplink/mcp-install-light.svg)](lmstudio://add_mcp?name=podmule&config=eyJ1cmwiOiJodHRwczovL2FwcC5wb2RtdWxlLmNvbS9tY3AifQ==)
[![Add to Replit](https://img.shields.io/badge/Replit-Add_PodMule-F26207?style=flat-square&logo=replit&logoColor=white)](https://replit.com/integrations?mcp=eyJkaXNwbGF5TmFtZSI6IlBvZE11bGUiLCJiYXNlVXJsIjoiaHR0cHM6Ly9hcHAucG9kbXVsZS5jb20vbWNwIn0=)
[![Add to Goose](https://img.shields.io/badge/Goose-Add_PodMule-2D8C7F?style=flat-square)](goose://extension?url=https%3A%2F%2Fapp.podmule.com%2Fmcp&type=streamable_http&id=podmule&name=PodMule&description=Search%2C%20draft%20and%20manage%20your%20podcast%20workspace.)

These add the MCP connection only — the skills come with the plugin package, so Claude Code and ChatGPT desktop get more out of it.

### Anything else

Any MCP client that speaks Streamable HTTP with OAuth can point at the URL directly:

```json
{
  "mcpServers": {
    "podmule": {
      "type": "http",
      "url": "https://app.podmule.com/mcp"
    }
  }
}
```

`"type"` is not optional. Claude Code reads a `url` entry without it as a stdio server, skips it, and errors.

## What the skills do

| Skill | Ask it |
|---|---|
| `find-in-back-catalogue` | "Which episodes discuss burnout?" · "Find the exact quote and timestamp." |
| `draft-clips` | "Draft clips from Tuesday's episode." |
| `interview-brief` | "Brief me on my next guest." |
| `episode-writeup` | "Generate show notes and titles for episode 42." |
| `workspace-triage` | "What needs my attention today?" |

`find-in-back-catalogue` is read-only and the best first thing to try. The clip and write-up skills change your workspace, so they ask before doing so.

## Repo layout

```
.claude-plugin/marketplace.json    the catalog, read by both Claude and ChatGPT desktop
plugins/podmule/
  .claude-plugin/plugin.json       Claude manifest
  .codex-plugin/plugin.json        Codex/ChatGPT manifest
  .mcp.json                        the connector declaration, shared by both
  skills/                          five skills, shared by both
server.json                        the official MCP registry entry
scripts/check-manifests.mjs        structural checks on the manifests
scripts/check-capability-drift.mjs fails when a skill names a capability that no longer exists
```

Both manifests point at one skills directory and one `.mcp.json`, so the two ecosystems can never drift apart in content — only in the presentation fields each one reads.

## Checks

```
node scripts/check-manifests.mjs
node scripts/check-capability-drift.mjs
```

The drift check reads PodMule's public capability list and fails if a skill mentions something the server no longer registers. It needs no credentials, and runs in CI on every push and pull request. Renaming a capability in the product is exactly the kind of change that otherwise breaks installed guidance silently.

## Licence

MIT — see [LICENSE](LICENSE).

Lo que la gente pregunta sobre podmule-plugin

¿Qué es Squared-Lemons-Ltd/podmule-plugin?

+

Squared-Lemons-Ltd/podmule-plugin es mcp servers para el ecosistema de Claude AI. Connect your agent to your PodMule podcast workspace over MCP — marketplace, plugin and skills. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-08-18.

¿Cómo se instala podmule-plugin?

+

Puedes instalar podmule-plugin clonando el repositorio (https://github.com/Squared-Lemons-Ltd/podmule-plugin) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar Squared-Lemons-Ltd/podmule-plugin?

+

Nuestro agente de seguridad ha analizado Squared-Lemons-Ltd/podmule-plugin y le ha asignado un Trust Score de 87/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene Squared-Lemons-Ltd/podmule-plugin?

+

Squared-Lemons-Ltd/podmule-plugin es mantenido por Squared-Lemons-Ltd. La última actividad registrada en GitHub es del 2026-08-18, con 0 issues abiertos.

¿Hay alternativas a podmule-plugin?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega podmule-plugin en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: Squared-Lemons-Ltd/podmule-plugin
[![Featured on ClaudeWave](https://claudewave.com/api/badge/squared-lemons-ltd-podmule-plugin)](https://claudewave.com/repo/squared-lemons-ltd-podmule-plugin)
<a href="https://claudewave.com/repo/squared-lemons-ltd-podmule-plugin"><img src="https://claudewave.com/api/badge/squared-lemons-ltd-podmule-plugin" alt="Featured on ClaudeWave: Squared-Lemons-Ltd/podmule-plugin" width="320" height="64" /></a>

Más MCP Servers

Alternativas a podmule-plugin