include sections and modes never break an existing call. Renames and changes that could affect your integration are called out explicitly.
July 2026
REST parity: five new tools and six expanded ones
The MCP surface now covers every public GA REST capability. Five new tools:particle_podcast_get_episode_timeseries— time-bucketed episode and mention counts with the same filters asparticle_podcast_list_episodespluskeyword_search; the purpose-built answer to “how often is X discussed over time”.particle_podcast_list_clips— browse highlight clips by podcast, type, or engagement score, with aclip_iddetail path andinclude=["transcript"].particle_podcast_get_episode_ads(premium) — every detected ad read inside one episode with sponsor, product, offer, read type, placement, and exact offsets.particle_podcast_get_ad_trends(premium) —sponsor_trends(advertisers ramping up or pulling back) andtimeseries(one company’s ad volume over time, split host-read vs pre-recorded).particle_entity_get— a knowledge-graph entity’s profile, closing the loop forplace/otherslugs fromparticle_entity_resolve.
particle_podcast_list_gueststakespodcast_slugfor one show’s guest roster (one-off guests included).particle_podcast_get_rankingsaddsmode=slots— every valid source, country, andcategory_slugwith live chart data, so filter values are discovered rather than guessed.particle_podcast_get_publishertakesqueryto resolve a publisher name to a slug in the same call (candidates on ambiguity). The RESTGET /v1/podcasts/publisherslisting gained the matchingqfilter.particle_podcast_get_sponsor_leaderboardaddsmode=publishers(the sell-side leaderboard withunique_sponsorsandads_per_active_podcastmetrics) and apublisher_slugfilter for sponsors mode.particle_company_get_podcast_ad_presenceaddsinclude=podcasts(full ranked show list),include=segments(actual ad-read segments with AI summaries), andinclude=co_advertisers(sponsor pairs sharing episodes).particle_podcast_get_episodecross-references the new episode-ads tool.
Premium include sections now honor the plan’s premium entitlement
The include sections that carry premium-grade data on standard-tier tools now require a plan with premium endpoints, matching the premium-tier tools themselves:suitability and rankings on particle_podcast_resolve, and bias, suitability, and advertising on particle_podcast_get_publisher. Entitled plans are unaffected. A plan without premium endpoints now receives a premium_required error naming the offending include values — retry without them for the standard sections (the high-level suitability_tier and bias enums on resolve results are standard data and always rendered).
Filter-aware alert previews
particle_alert_preview now accepts the same filters object as particle_alert_create, so the match-frequency estimate reflects what the alert would actually surface once its filters are applied. languages and speaker_roles narrow the historical sweep exactly; relevance and source_popularity are graded at read time and don’t run on historical episodes, so they leave the count unchanged (the estimate is an upper bound when relevance=RELEVANT). The preview cache key keys on the count-affecting filters — changing languages or speaker_roles starts a fresh sweep, while toggling relevance or source_popularity returns the same cached count. Omitting filters preserves the previous unfiltered behavior.
June 2026
Alert filters — narrow what an alert surfaces
Alerts now carry a persistentfilters object that narrows what gets surfaced — applied identically to the matches list, the realtime email, and the daily/weekly digests. Four axes: languages (BCP-47 tags), relevance (EVERYTHING vs RELEVANT), source_popularity (ANY vs POPULAR = top 5% of currently-charting podcasts), and speaker_roles for PODCAST_SPEAKER alerts (defaults to GUEST,PANELIST,CORRESPONDENT,AUDIENCE,SOUNDBITE_SPEAKER; sending it on an ENTITY_MENTION alert returns an unprocessable_entity error).
particle_alert_create and particle_alert_update accept the filters object directly, and particle_alert_get / particle_alert_list echo the active filter set back so reads expose the current state. Update semantics mirror entities/notifications: passing filters on update replaces the whole set, {} clears all four axes, and omitting it leaves the existing set unchanged. See Alerts → Filtering matches for the per-axis spec and the REST changelog for the wire shape — the same filter object is accepted on POST /v1/projects/{projectId}/alerts and PATCH /v1/alerts/{id}.
Better entity & person resolution
particle_entity_resolveandparticle_person_resolvenow rank across people, companies, and knowledge graph entities with one relevance model (exact name / identifier / known alias → prefix → all-words → fuzzy), replacing the prior name-only substring match. Results are better-ordered and tolerate typos, stock tickers,@handles, and domains.particle_person_resolvealso now finds people who aren’t yet linked to a knowledge-graph entity. Each match carries the canonicalslug,name, anddescription(plus a company’scompany_domain) — enough to confirm the hit and traverse to the matchinggettool.
Alerts
- Seven alert lifecycle tools — a new default
alertscategory brings the Alerts feature to the MCP surface:particle_alert_create,particle_alert_list,particle_alert_get,particle_alert_update,particle_alert_delete,particle_alert_preview, andparticle_alert_list_matches. Watch a person, company, or other entity and get emailed whenever it’s mentioned on a podcast (ENTITY_MENTION) or appears as a speaker (PODCAST_SPEAKER); preview match frequency before committing; and review the matches an alert has caught. - The first writable tools —
particle_alert_create/particle_alert_updatemutate andparticle_alert_deleteis a destructive soft delete, so these are notreadOnlyHint: true. They act on the single project your credential is scoped to — there is no project parameter and no way to reach another project’s alerts. Watch targets are passed as the same entity slugs the resolve tools return (resolve a name once, then watch it).
Richer external links
- External-link attributes in markdown — when
particle_podcast_resolvehydratesinclude: ["external_links"], each platform bullet now appends the attributes the platform reports (audience size, content tallies, verified status, …), so a YouTube channel renders its subscriber and video counts alongside the URL rather than the link alone. The attributes were already present on theoutput_format: "json"form; this surfaces them in the default markdown.
Agent discovery (auth.md)
/auth.md— both hosts now serve the auth.md agent-onboarding document athttps://api.particle.pro/auth.mdandhttps://mcp.particle.pro/auth.md: the discovery walkthrough, a credential decision tree, registration steps, errors, and revocation, with the flows Particle Pro deliberately does not offer declared up front.agent_authblock — the AS metadata now embeds a machine-readable registration summary (register_uri, identity and credential types, revocation). Authentication → Agent discovery.- REST protected-resource metadata —
https://api.particle.pro/.well-known/oauth-protected-resourcenow serves an RFC 9728 document describing the REST API resource (previously 404). The MCP document athttps://mcp.particle.pro/.well-known/oauth-protected-resourceis unchanged.
Skill bundles and exact-tool selection
- Skill bundles — three ready-made skills (Podcast Intelligence, Company Deep Dive, Guest & People Research): a connection URL scoped to just the tools each workflow needs, plus a copy-paste SKILL.md that teaches your agent the workflow.
?tools=selector — pin a connection to exactly the tools you want advertised:?tools=particle_podcast_resolve,particle_podcast_search_transcripts. See Tool sets & discovery.- More clients in the quickstart — Windsurf, Zed, ChatGPT developer mode, and server-side wiring examples for the Anthropic Messages API and OpenAI Responses API. Quickstart.
Connect without a browser
- API keys as MCP credentials — the server now accepts the same
pp_*project API keys as the REST API (Authorization: BearerorX-API-Key), so headless agents — cron jobs, the OpenAI Responses API, server-side harnesses — no longer need an interactive OAuth consent. OAuth remains the recommended path when a human is present. Authentication. - One-click installs — Cursor and VS Code install buttons in the Quickstart.
- llms.txt — now opens with instructions for LLM agents: which surface to pick, how the tools compose, and the conventions that save wasted round-trips.
Smarter discovery on connect
- Conventions taught up front — connecting clients now receive server instructions covering the two things a bare tool list doesn’t show: tools are lean by default and expand via
include/mode/formatparameters, and every slug a tool returns is a valid input to the other tools (resolve a name once, then traverse). particle_catalogshows each tool’s depth — the catalog menu lists every tool’s expand options (↳ include: … · mode: …), so an agent can see what a tool can really do before fetching its full schema.
25 tools, flat names, opt-in categories
- Renames (action needed if you call tools by name) — every tool moved to a flat
particle_*identifier, e.g.entities/resolve_entity→particle_entity_resolve. The tool reference lists all current names. - Consolidations —
search_dialogueandlist_clipsmerged intoparticle_podcast_search_transcripts: relevant clips now arrive inline on search matches, and a known episode’s full clip list comes fromparticle_podcast_get_episodewithinclude: ["clips"].get_entity_mentionsbecameparticle_podcast_find_mentions. Boolean flags on get-tools becameincludearrays. - 12 new tools — people profiles and resolution, podcast guests, chart rankings, publishers, listener ratings, and political-bias and brand-suitability analytics. Browse them in the tool reference.
- Default vs opt-in advertisement — six tool categories advertise on a bare connection; five more (advertising, publishers, ratings, bias, suitability) advertise when you opt in with
?include=. Every public tool stays callable by name either way, and the always-onparticle_catalog/particle_callmeta-tools let any connection discover and reach the full surface. Tool sets & discovery.
May 2026
Launch
- The Particle Pro MCP server ships at
https://mcp.particle.pro: read-only tools over podcasts, companies, and the knowledge graph, with OAuth 2.1 and markdown outputs designed for agent loops. - MCP requests and per-tool usage appear in your organization’s request logs alongside REST traffic.
Missing something? Email api@particle.pro.