AI Directory MCP Server
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.
Installation
cd mcp-server
npm installUsage with Claude Desktop
Add to your Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"ai-directory": {
"command": "node",
"args": ["C:/Users/es/textmei-frontend/mcp-server/index.js"]
}
}
}Access Modes
Public Mode (Default)
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.
Full Access Mode
For partners or internal use, set the environment variable to expose SMS/voice numbers:
{
"mcpServers": {
"ai-directory": {
"command": "node",
"args": ["C:/Users/es/textmei-frontend/mcp-server/index.js"],
"env": {
"VOXIE_FULL_ACCESS": "true"
}
}
}
}





