manage-private-spotify-podcasts

manage-private-spotify-podcasts is a skill for Codex from martin-gomola/spotify-mcp. It costs 60 tokens per session (759 once invoked), scanned A, original, MIT.

A tool for listing and deleting private Spotify podcast episodes created through Spotify's Save to Spotify feature.

In plain words
What is it for?
Use it to inspect private shows and episodes and delete one unwanted private episode. It does not manage catalog podcasts, saved episodes, playlists, or whole shows.
Why use it?
It helps you identify the exact private episode before removing it, reducing the risk of deleting the wrong item.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: mentions Codex; $skill-name invocation.

Good fit Use it to inspect private shows and episodes and delete one unwanted private episode. It does not manage catalog podcasts, saved episodes, playlists, or whole shows.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/martin-gomola/spotify-mcp/manage-private-spotify-podcasts
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add martin-gomola/spotify-mcp --skill manage-private-spotify-podcasts
Clone the repo
git clone --depth 1 https://github.com/martin-gomola/spotify-mcp

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for manage-private-spotify-podcasts

README.md
[![agentmods](https://agentmods.dev/badge/skills/martin-gomola/spotify-mcp/manage-private-spotify-podcasts/github.svg)](https://agentmods.dev/skills/martin-gomola/spotify-mcp/manage-private-spotify-podcasts)
Your own site
<a href="https://agentmods.dev/skills/martin-gomola/spotify-mcp/manage-private-spotify-podcasts"><img src="https://agentmods.dev/badge/skills/martin-gomola/spotify-mcp/manage-private-spotify-podcasts/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for manage-private-spotify-podcasts

Your own site · 80×15
<a href="https://agentmods.dev/skills/martin-gomola/spotify-mcp/manage-private-spotify-podcasts"><img src="https://agentmods.dev/badge/skills/martin-gomola/spotify-mcp/manage-private-spotify-podcasts.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 759 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00060 $0.00759
Opus 5 $0.00030 $0.00380
Sonnet 5 $0.00012 $0.00152
Haiku 4.5 $0.00006 $0.00076

Measured 11d ago against content hash fd5a97f4f51a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

manage-private-spotify-podcasts scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/spotify-mcp/skills/manage-private-spotify-podcasts/SKILL.md · 60 lines

How it starts

The opening of the file, as written. The whole thing — 60 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Manage private Spotify podcasts

Use the external Save to Spotify CLI as the source of truth. This skill deletes individual private episodes only; it does not delete shows or mutate Spotify MCP playlists.

Preflight

  1. Check whether save-to-spotify is available on PATH. If it is missing, stop and direct the user to run make codex-install-bundle, then start a new Codex task.
  2. Run save-to-spotify --json doctor. If its separate authorization is missing, follow the external $save-to-spotify setup guidance before listing or deleting episodes.
  3. Always use JSON mode. Never print, inspect, or transfer either tool's token.

Resolve the exact episode

  1. Run save-to-spotify --json shows, then list episodes in the relevant show with save-to-spotify --json episodes --show-id <exact-show-uri>.
  2. Prefer an exact spotify:episode:... URI supplied by the user. If the user supplied a title, resolve it only from the private episode listings. Present title, exact episode URI, show, and processing status before deletion.
  3. If zero episodes or multiple episodes match, do not guess. Ask the user to select one exact URI.
  4. Never substitute a Spotify catalog episode, saved-library episode, or playlist item with a similar title.
  5. Allow deletion in any observed processing state, including PROCESSING, NOT_READY, READY, or FAILED. Deletion does not require a readiness wait; surface the state so the user understands whether they are removing playable content or cleaning up a stuck upload.

Delete safely

  1. Treat episode deletion as irreversible. Unless the user's current message already names the exact URI and explicitly commands its deletion, prefer the client's structured-choice UI. Put the exact title, spotify:episode:... URI, show, and current status in the confirmation question, then offer exactly two choices:
    • Delete episode - irreversible: this selection is the explicit delete confirmation and is bound to the exact displayed URI.
    • Cancel: make no changes. Do not ask for another confirmation after the user selects the delete choice. If structured choices are unavailable, ask the user to reply with delete <exact-episode-uri> as the portable fallback.
  2. Delete once with save-to-spotify --json episodes delete <exact-episode-uri>.
  3. Success from the write must report status: deleted and the same exact episode ID. Preserve the original full URI in the user-facing result.
  4. If the response is missing, times out, or is otherwise ambiguous, re-list the show's complete episode collection before considering any retry. Never repeat the delete blindly.
  5. Verify completion by re-listing every episode in the exact show and confirming that the exact episode URI is absent. Do not claim deletion from the write response alone.

Read the full file on GitHub · 60 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 60 lines · 60 tokens per session scan A fd5a97f4f51a

Subscribe to this mod's changes

manage-private-spotify-podcasts is a skill published in the GitHub repository martin-gomola/spotify-mcp (0 stars, last pushed 3d ago), licensed MIT. It adds 60 tokens to every session and 759 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

spotify-mcp-doctor

Diagnose and repair NovaLux12/spotify-mcp-server failures — auth, permissions, devices, rate limits, OpenClaw wiring. Use when Spotify tool calls fail or setup stalls.

NovaLux12/spotify-mcp-server · 44 tokens

spotify-exhaustive-feature-sweep

Exhaustive feature sweep across Spotify domains — enumerate all endpoints into quantity-first tool proposals with quota flags and batched GitHub logging.

NovaLux12/spotify-mcp-server · 34 tokens

spotify-mcp-competitor-comparison

Answer "is our MCP standard/conformant" or "do others offer more" questions with in-repo protocol evidence, then web research.

NovaLux12/spotify-mcp-server · 37 tokens

debug-optimize-lcp

Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…

ChromeDevTools/chrome-devtools-mcp · 99 tokens

opik-diagnose

Surface the Opik traces worth a developer's attention, ranked by signal — Diagnostics issues first, then errors, failed tool calls, latency, regressions, and low online-eval scores. With the Opik MCP connected it lists the project's agentinsightsissue entities, offers to turn Diagnostics on when the project has it…

comet-ml/opik-mcp · 187 tokens

specflow-use

To connect Rosetta with Grid Dynamics SpecFlow MCP; only when SpecFlow is mentioned and the MCP is installed.

griddynamics/rosetta · 27 tokens