get_moz_analysis
Retrieve Moz domain analysis data to evaluate domain authority, link metrics, and SEO performance with the FetchSERP MCP Server API. Ideal for optimizing website strategy and enhancing search rankings.
Instructions
Get Moz domain analysis data
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | The domain to analyze |
Implementation Reference
- index.js:635-636 (handler)Handler for get_moz_analysis: delegates to makeRequest API call to '/api/v1/moz' endpoint.case 'get_moz_analysis': return await this.makeRequest('/api/v1/moz', 'GET', args, null, token);
- index.js:186-195 (schema)Input schema for get_moz_analysis tool: requires 'domain' parameter.inputSchema: { type: 'object', properties: { domain: { type: 'string', description: 'The domain to analyze', }, }, required: ['domain'], },
- index.js:183-195 (registration)Registration of get_moz_analysis tool in the ListToolsRequestSchema response.{ name: 'get_moz_analysis', description: 'Get Moz domain analysis data', inputSchema: { type: 'object', properties: { domain: { type: 'string', description: 'The domain to analyze', }, }, required: ['domain'], },