← particle.pro

INDIVIDUAL MCP TOOL

particle_podcast_get_episode_timeseries

Time-bucketed episode counts — the purpose-built answer to "how often is X discussed over time".

particle.pronone authenticationAvailability not checked

LIVE ENDPOINT

https://api.particle.pro/mcp

No auth detected

Connect to this endpoint to inspect the live schema for particle_podcast_get_episode_timeseries and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

particle.pro

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.particle-pro]
url = "https://api.particle.pro/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "particle-pro": {
      "type": "http",
      "url": "https://api.particle.pro/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: particle-pro
Remote MCP URL: https://api.particle.pro/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "particle-pro": {
      "url": "https://api.particle.pro/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "particle-pro": {
      "type": "http",
      "url": "https://api.particle.pro/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "particle-pro",
  "transport": "streamable-http",
  "url": "https://api.particle.pro/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • particle_alert_create — Create an alert that watches a single entity and emails you whenever it is mentioned on a podcast episode (kind=ENTITY_MENTION) or appears as a speaker (kind=PODCAST_SPEAKER).
  • particle_alert_delete — Delete an alert.
  • particle_alert_get — Fetch a single alert's full configuration — title, kind, cadence, watched entities (with names), notification emails, and any active filters (languages, relevance, source_popularity, speaker_roles).
  • particle_alert_list — List the alerts in your project, newest first.
  • particle_alert_list_matches — List the matches an alert has caught, newest first — the payoff of an alert.
  • particle_alert_preview — Preview how often an alert would fire BEFORE creating it.
  • particle_alert_update — Update an existing alert.
  • particle_call — Dispatch any public Particle tool by name.