Vox Pop MCP Server

<picture> <source media="(prefers-color-scheme: dark)" srcset="assets/logo-dark.svg"> <source media="(prefers-color-scheme: light)"

Local serverstdioPython

What is the Vox Pop MCP server?

Vox Pop MCP server exists for a simple reason — assistants are far more useful when they can act on Vox Pop directly instead of describing what you should do. .

What the assistant can call

Once Vox Pop is connected, these are the calls the assistant has available:

  • Query — Routes to
  • search_opinions — Search all platforms for opinions on a topic
  • search_opinions_perspectiveThen vs Now — historical + recent opinions side by side
  • get_thread_opinions — Dive into a specific thread's comments
  • list_available_platforms — Check what's available and healthy
  • Version — Status
  • v0.1 — Shipped
  • v0.2Current
  • v0.3 — Next
  • v0.4 — Planned
  • v1.0 — Planned
  • Credentials — Zero stored. Optional LLM keys passed via env vars at runtime, never written to disk

Configuration and credentials

You will need 3 environment variables: ANTHROPIC_API_KEY, OPENAI_API_KEY, OLLAMA_HOST. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Setting it up

Installation goes through your MCP client rather than a global install: point it at vox-pop on PyPI and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Choosing this one

Among the AI and media services options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Vox Pop's toolset — Query, search_opinions, search_opinions_perspective and 11 more — is a fair guide to whether it matches your workflow. It is maintained by mushfique-dgist; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Vox Pop.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the vox pop mcp server does with a few real requests.

Available tools

ToolWhat it does
QueryRoutes to
search_opinionsSearch all platforms for opinions on a topic
search_opinions_perspective**Then vs Now** — historical + recent opinions side by side
get_thread_opinionsDive into a specific thread's comments
list_available_platformsCheck what's available and healthy
VersionStatus
v0.1Shipped
v0.2**Current**
v0.3Next
v0.4Planned
v1.0Planned
CredentialsZero stored. Optional LLM keys passed via env vars at runtime, never written to disk.
User-AgentTransparent: vox-pop/0.2 in all requests.
CachingAPI responses (7 days) and embeddings cached locally at ~/.cache/vox-pop/. No data sent to third parties. Embeddings stored as JSON, no serialization dependencies.

How to install the Vox Pop MCP server

{
  "mcpServers": {
    "vox-pop": {
      "command": "python",
      "args": ["-m", "vox_pop.server"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
ANTHROPIC_API_KEYCredential the server authenticates with.Yes
OPENAI_API_KEYCredential the server authenticates with.Yes
OLLAMA_HOSTEndpoint or connection string the server talks to.Optional

Example prompts to try

  • Use Vox Pop to Query.
  • Use Vox Pop to search opinions.
  • Use Vox Pop to search opinions perspective.

Frequently asked questions

It connects Vox Pop to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Query, search_opinions, search_opinions_perspective, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Vox Pop directly.