Voice Ai Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Voice Ai Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
An MCP (Model Context Protocol) server designed for Voice AI in GoHighLevel (GHL) that fetches and analyzes website content to provide business context to AI agents.
git clone <your-repo-url>
cd Voice_MCPnpm installnpm run buildThe MCP server runs on stdio transport:
npm startAdd to your MCP client configuration (e.g., claude_desktop_config.json):
{
"mcpServers": {
"voice-ai-website-analyzer": {
"command": "node",
"args": ["d:\\Voice_MCP\\dist\\index.js"]
}
}
}Once configured, you can use the analyze_website tool:
analyze_website({ url: "https://example.com" })The tool will:
BUSINESS WEBSITE ANALYSIS
==================================================
Website: https://example.com
Pages Analyzed: 5
BUSINESS DETAILS
--------------------------------------------------
Business Name: Example Business Inc.
Description: We provide excellent services to our customers
Phone: (555) 123-4567
Email: [email protected]
Address: 123 Main Street, City, State 12345
Business Hours: Monday-Friday 9AM-5PM
SERVICES OFFERED
--------------------------------------------------
1. Web Development
2. Mobile App Development
3. Consulting Services
4. Technical Support
PAGE SUMMARIES
--------------------------------------------------
Page 1: Home - Example Business
URL: https://example.com
Content Preview: Welcome to Example Business...
Page 2: About Us
URL: https://example.com/about
Content Preview: Learn more about our company...npm i -g vercelvercel⚠️ MCP servers typically run on stdio transport and are designed to be run locally or on long-running servers. Vercel is optimized for serverless functions with HTTP endpoints.
For production use with GHL Voice AI, consider:
If you need to deploy on Vercel, you'll want to create API endpoints instead. Let me know if you need help converting this to an HTTP API format.
The server is configured to:
Voice_MCP/
├── src/
│ └── index.ts # Main MCP server implementation
├── dist/ # Compiled JavaScript (generated)
├── package.json
├── tsconfig.json
├── vercel.json
└── README.mdnpm run buildAfter building, run:
node dist/index.jsThe server will start and wait for MCP protocol messages on stdin.
When integrated with GHL Voice AI:
analyze_website tool with the URL@modelcontextprotocol/sdk: MCP protocol implementationcheerio: HTML parsing and manipulationnode-fetch: HTTP requestsMIT
For issues or questions, please open an issue in the repository.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.