VaarunSinha

voygr-mcp

Community VaarunSinha
Updated

MCP server for VOYGR place verification and outbound venue calls

voygr-mcp

MCP server for VOYGR place verification and outbound venue calls.Proper stdio MCP: tools, resources, prompts, progress notifications, and elicitation.

Demo Video

Install

cd voygr-mcp
python3 -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"

Requires a VOYGR API key at process start:

export VOYGR_API_KEY=your_key
# or: voygr login your_key

Dry-run (default)

VOYGR_DRY_RUN defaults to 1. Calls only are mocked (magic numbers, scriptedevents, canned transcripts). verify_place / verify_places / check_creditsalways hit the live VOYGR API via the official voygr Python client.

Magic number Outcome
+1-555-0100 success_booked
+1-555-0101 failed_voicemail
+1-555-0102 mid-call ask_user then success_booked
+1-555-0103 failed_short_hangup
+1-555-0104 409 concurrency cap
+1-555-0105 402 insufficient credits

Live dialing:

export VOYGR_DRY_RUN=0
docker compose up -d redis   # call state / event cursors
export VOYGR_REDIS_URL=redis://localhost:6379/0
voygr-mcp

Claude Desktop (stdio)

  1. Put VOYGR_API_KEY=... in the project .env (loaded automatically; Claude’scwd does not matter).
  2. Edit ~/Library/Application Support/Claude/claude_desktop_config.json(macOS) and merge:
{
  "mcpServers": {
    "voygr": {
      "command": "/Users/vaarunsinha/voygr-mcp/scripts/claude-desktop-mcp.sh",
      "env": {
        "VOYGR_DRY_RUN": "1"
      }
    }
  }
}
  1. Fully quit and reopen Claude Desktop. Confirm under + → Connectors (orDeveloper settings) that voygr is connected and tools like verify_placeappear.

Or point command at .venv/bin/voygr-mcp directly — the server also loadsthe package-root .env on start.

Tools

Tool Role
verify_place Single POI → agent-safe verdict (not raw open/closed)
verify_places Batch + normalized cache
call_place Structured call (inquiry / info_gathering); consent + slots elicited
get_call Resume by call handle
check_credits Usage / credits

Consent is never a tool parameter — it is always an elicitation to the human.

Resources / prompt

  • voygr://call/{id}/transcript — 7-day retention noted in metadata
  • voygr://call/{id}/events
  • Prompt: verify_before_recommending

Honesty (demo / video)

When recording the 60s demo:

  • Refusal arm (verify_places dropping closed/not_found) should be live API.
  • Mid-call handoff segment should be dry-run (+1-555-0102) and labeled on screen.
  • List which segments used dry-run in any public write-up.

Tests

pytest

Tests use ScriptedElicitationProvider (no human). No skip-consent env var shipsin the server.

Stack

Python, official mcp SDK (stdio), voygr PyPI client, httpx (calls API), Redis(live call state), Docker Compose, pytest. No FastAPI in v1.

Reference checkout of upstream CLI (not vendored): ../voygr-dev-tools.

MCP Server · Populars

MCP Server · New

    drakulavich

    Kesha Voice Kit

    Give your tools a voice — speech to text and back, 25 languages, up to ~19× faster than Whisper. On your machine.

    Community drakulavich
    lobu-ai

    Lobu — Open-source backend for AI teammates

    Open-source control plane and runtime for organisational agents: shared company context, isolated execution, approvals and MCP.

    Community lobu-ai
    minipuft

    Claude Prompts MCP Server

    Wolfflow: Model Context Protocol (MCP) server for reusable prompt templates, multi-step workflow chains, and quality gates. Compose agentic workflows with an operator syntax; export as native skills to Claude Code, Cursor, OpenCode, and Gemini CLI.

    Community minipuft
    docmancer

    Docmancer

    Find out what your coding agents already know. Docmancer indexes the memory, rules, and instructions Claude Code, Codex, Cursor, and Gemini wrote on your machine, then carries the durable parts to every agent. Local-first, MIT.

    Community docmancer
    lineai-intelligence

    codelogic-mcp-server

    An MCP Server to utilize Codelogic's rich software dependency data in your AI programming assistant.