MCP (Model Context Protocol) server for the Voxie AI Phone Number Directory. Allows AI assistants to query information about AI services and get webchat URLs to interact with them. Add to your Claude Desktop config (claudedesktopconfig.json): By default, the server runs in public mode which only exposes webchat URLs for Voxie services. This is the mode used when publishing to npm. For partners or
Add this skill
npx mdskills install sonnyflylock/voxie-ai-directory-mcpWell-documented MCP server with useful directory tools and clear setup instructions
1# AI Directory MCP Server23MCP (Model Context Protocol) server for the Voxie AI Phone Number Directory. Allows AI assistants to query information about AI services and get webchat URLs to interact with them.45## Installation67```bash8cd mcp-server9npm install10```1112## Usage with Claude Desktop1314Add to your Claude Desktop config (`claude_desktop_config.json`):1516```json17{18 "mcpServers": {19 "ai-directory": {20 "command": "node",21 "args": ["C:/Users/es/textmei-frontend/mcp-server/index.js"]22 }23 }24}25```2627## Access Modes2829### Public Mode (Default)30By default, the server runs in **public mode** which only exposes webchat URLs for Voxie services. This is the mode used when publishing to npm.3132### Full Access Mode33For partners or internal use, set the environment variable to expose SMS/voice numbers:3435```json36{37 "mcpServers": {38 "ai-directory": {39 "command": "node",40 "args": ["C:/Users/es/textmei-frontend/mcp-server/index.js"],41 "env": {42 "VOXIE_FULL_ACCESS": "true"43 }44 }45 }46}47```4849## Available Tools5051### `list_ai_services`52List all AI services or filter by provider type.53- `provider`: "all", "voxie", or "third-party"5455### `get_ai_service`56Get details about a specific service by ID.57- `id`: Service ID (e.g., "voxie-us", "chatgpt-us")5859### `find_ai_services_by_country`60Find services available in a specific country.61- `country`: Country name or partial match6263### `chat_with_ai`64Get a webchat URL to chat with a Voxie AI persona (recommended).65- `persona`: "voxie", "rhodey", "soarie", "mia", or "wallie"6667## Available Resources6869- `ai-directory://services/all` - All services70- `ai-directory://services/voxie` - Voxie AI personas71- `ai-directory://services/third-party` - Third-party services7273## API Endpoint7475The directory is also available as a REST API at:76- `https://voxie.network/api/ai-directory`7778Query parameters:79- `id` - Get specific service80- `provider` - Filter by "voxie" or "third-party"81- `country` - Filter by country name82- `channel` - Filter by "sms", "voice", or "webchat"8384## Publishing to npm8586```bash87npm publish --access public88```8990The public npm package only exposes webchat URLs, protecting your SMS/voice costs.91
Full transparency — inspect the skill content before installing.