home / mcp / sitescore mcp server
Provides AI-powered website audits covering SEO, performance, mobile, accessibility, and security through MCP integration.
Configuration
View docs{
"mcpServers": {
"automatikstudio-sitescore-mcp": {
"command": "node",
"args": [
"/path/to/sitescore-mcp/dist/index.js"
],
"env": {
"ANTHROPIC_API_KEY": "YOUR_API_KEY"
}
}
}
}You can run a SiteScore MCP Server to audit websites for SEO, performance, accessibility, mobile-friendliness, and security using AI-powered analysis. This server exposes a versatile analysis toolset that you can integrate with MCP clients to automate website audits and generate actionable reports.
To use the SiteScore MCP Server, install and build the server, then connect it to your MCP client. Your client will send analysis requests for specific websites, and the server will return comprehensive audit results including overall scores, category breakdowns, and issue details.
Prerequisites: ensure Node.js and npm are installed on your system.
npm install
npm run buildConfigure your MCP client to connect to the SiteScore MCP Server using the following server entry. This config runs the server locally via Node and loads the built index from the dist path.
{
"mcpServers": {
"sitescore": {
"command": "node",
"args": ["/path/to/sitescore-mcp/dist/index.js"],
"env": {
"ANTHROPIC_API_KEY": "your-api-key"
}
}
}
}Ensure you provide the required API key for AI-powered analysis. Validate input URLs for accessibility and security checks, and review the category scores to prioritize improvements. Use the detailed issues list to guide remediation efforts.
If you encounter authentication errors, verify that ANTHROPIC_API_KEY is correctly set in your environment when starting the MCP client. Check that the built server index is accessible at the path specified in the args and that your MCP client is configured to communicate with the sitescore server. If issues persist, consult the logs produced by the MCP runtime for error details.
Analyze a website and generate a comprehensive audit report including overall score, category scores, summary, and issues.