Skip to main content
Glama
MattiooFR

Majestic MCP Server

by MattiooFR

Majestic MCP Server

A Model Context Protocol (MCP) server for the Majestic SEO API. Runs locally via stdio transport.

Features

9 tools to interact with Majestic's SEO data:

Tool

Description

get_index_item_info

Get Trust Flow, Citation Flow, backlink counts and key metrics

get_backlinks

Get detailed backlink data for a URL/domain

get_anchor_text

Get anchor text distribution

get_ref_domains

Get list of referring domains

get_top_pages

Get the most backlinked pages on a domain

get_topics

Get topical Trust Flow breakdown

get_new_lost_backlinks

Get recently gained or lost backlinks

compare_items

Compare metrics across multiple URLs/domains

get_subscription_info

Check API usage and remaining quota

Related MCP server: semrush-mcp

Prerequisites

Quick Start

With npx (no install)

MAJESTIC_API_KEY=your-key npx majestic-mcp

Global install

npm install -g majestic-mcp
MAJESTIC_API_KEY=your-key majestic-mcp

MCP Configuration

For mcporter / OpenClaw

Add to .mcp.json:

{
  "mcpServers": {
    "majestic": {
      "command": "npx",
      "args": ["-y", "majestic-mcp"],
      "env": {
        "MAJESTIC_API_KEY": "your-api-key-here"
      }
    }
  }
}

For Claude Desktop

Add to Claude Desktop config:

{
  "mcpServers": {
    "majestic": {
      "command": "npx",
      "args": ["-y", "majestic-mcp"],
      "env": {
        "MAJESTIC_API_KEY": "your-api-key-here"
      }
    }
  }
}

Usage with mcporter

# Get Trust Flow and Citation Flow for a domain
mcporter call majestic.get_index_item_info items='["backlink-eldorado.fr"]'

# Get backlinks
mcporter call majestic.get_backlinks item="example.com" count=50

# Compare domains
mcporter call majestic.compare_items items='["site1.com","site2.com","site3.com"]'

# Check API quota
mcporter call majestic.get_subscription_info

API Reference

get_index_item_info

Get Trust Flow, Citation Flow, and other key metrics.

Parameter

Type

Default

Description

items

string[]

required

URLs or domains to analyze (max 100)

datasource

"fresh" | "historic"

"fresh"

Index to use

includeSubdomains

boolean

true

Include subdomain data

Get detailed backlink data.

Parameter

Type

Default

Description

item

string

required

URL or domain

datasource

"fresh" | "historic"

"fresh"

Index to use

count

number

100

Number of backlinks (max 50000)

mode

"0" | "1"

"0"

0=all, 1=one per domain

filterTopic

string

-

Filter by topic

filterRefDomain

string

-

Filter by referring domain

get_anchor_text

Get anchor text distribution.

Parameter

Type

Default

Description

item

string

required

URL or domain

datasource

"fresh" | "historic"

"fresh"

Index to use

count

number

100

Number to return (max 1000)

mode

"0" | "1"

"0"

0=phrase, 1=word anchors

textMode

"0" | "1" | "2"

"0"

0=anchor, 1=alt, 2=both

get_ref_domains

Get referring domains.

Parameter

Type

Default

Description

item

string

required

URL or domain

datasource

"fresh" | "historic"

"fresh"

Index to use

count

number

100

Number to return (max 50000)

orderBy

string

"TrustFlow"

Sort order

filterTopic

string

-

Filter by topic

get_top_pages

Get most backlinked pages.

Parameter

Type

Default

Description

item

string

required

Domain to analyze

datasource

"fresh" | "historic"

"fresh"

Index to use

count

number

100

Number to return (max 10000)

orderBy

string

"ExtBackLinks"

Sort order

get_topics

Get topical Trust Flow breakdown.

Parameter

Type

Default

Description

item

string

required

URL or domain

datasource

"fresh" | "historic"

"fresh"

Index to use

Get recently gained/lost backlinks.

Parameter

Type

Default

Description

item

string

required

Domain to analyze

count

number

100

Number to return (max 50000)

mode

"new" | "lost"

"new"

New or lost backlinks

compare_items

Compare metrics across domains.

Parameter

Type

Default

Description

items

string[]

required

2-5 URLs/domains to compare

datasource

"fresh" | "historic"

"fresh"

Index to use

get_subscription_info

Check API usage (no parameters).

Majestic Indexes

  • Fresh Index: Updated daily, contains links discovered in the last 120 days

  • Historic Index: Contains 5+ years of backlink data, updated monthly

License

MIT

Available Tools

9 tools
compare_itemsC

Compare Trust Flow, Citation Flow and other metrics across multiple URLs/domains

ParametersJSON Schema
NameRequiredDescriptionDefault
itemsYesList of URLs or domains to compare (2-5 items)
datasourceNoIndex to usefresh

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool compares metrics but does not explain how the comparison is performed, what 'other metrics' include, whether it requires authentication, rate limits, or error handling. This is insufficient for a tool with potential complexity in data retrieval and analysis.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core purpose. It avoids unnecessary words, though it could be slightly more structured by explicitly listing the metrics or clarifying the scope of 'other metrics'.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no annotations and no output schema, the description is incomplete. It lacks details on behavioral traits, output format, error cases, and how it differs from siblings. For a comparison tool with potential data source variations, this leaves significant gaps in understanding its full context and usage.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema fully documents the parameters ('items' and 'datasource'). The description adds no additional meaning beyond implying that 'items' are used for comparison, which is already clear from the schema. Baseline score of 3 is appropriate as the schema handles parameter documentation adequately.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: comparing Trust Flow, Citation Flow, and other metrics across multiple URLs/domains. It specifies the verb ('compare') and resources ('URLs/domains'), but does not explicitly differentiate from sibling tools like 'get_index_item_info' or 'get_top_pages', which might provide related but different functionality.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It mentions comparing metrics but does not specify scenarios, prerequisites, or exclusions, such as when to use 'get_index_item_info' for single-item analysis instead. This lack of context leaves usage unclear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_anchor_textC

Get anchor text distribution for a URL or domain

ParametersJSON Schema
NameRequiredDescriptionDefault
itemYesURL or domain to analyze
datasourceNoIndex to usefresh
countNoNumber of anchor texts to return
modeNo0 = phrase anchors, 1 = word anchors0
textModeNo0 = anchor text, 1 = alt text, 2 = both0

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states what the tool does but omits critical details such as rate limits, authentication requirements, data freshness implications, or what the output looks like (e.g., distribution format). For a tool with 5 parameters and no output schema, this is a significant gap in transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core purpose without unnecessary words. It directly states the tool's function and scope, making it easy to parse quickly. Every part of the sentence earns its place by specifying the action, resource, and target.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (5 parameters, no annotations, no output schema), the description is incomplete. It fails to explain behavioral aspects like output format, error handling, or usage constraints. For a data retrieval tool with multiple configuration options, more context is needed to ensure the agent can use it effectively without trial and error.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema fully documents all 5 parameters with descriptions, enums, defaults, and constraints. The description adds no additional parameter semantics beyond implying analysis of 'anchor text distribution', which is already covered by the schema's parameter names and descriptions. Baseline 3 is appropriate as the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get') and resource ('anchor text distribution'), specifying it's for a URL or domain. It distinguishes from siblings like 'get_backlinks' or 'get_ref_domains' by focusing on anchor text analysis rather than backlinks or domains. However, it doesn't explicitly differentiate from all siblings, such as 'get_top_pages' which might overlap in some contexts.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'get_backlinks' or 'compare_items'. It lacks explicit context, prerequisites, or exclusions, leaving the agent to infer usage based on the name and parameters alone. This minimal guidance could lead to incorrect tool selection in complex scenarios.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_index_item_infoC

Get Trust Flow, Citation Flow, backlink counts and other key metrics for one or more URLs/domains

ParametersJSON Schema
NameRequiredDescriptionDefault
itemsYesList of URLs or domains to analyze (max 100)
datasourceNoIndex to use: fresh (recent) or historic (5+ years)fresh
includeSubdomainsNoInclude subdomains in the analysis

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. While it mentions what metrics are retrieved, it doesn't describe important behavioral aspects like rate limits, authentication requirements, response format, pagination, or whether this is a read-only operation. The description is functional but lacks operational context needed for proper tool invocation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that communicates the core functionality without unnecessary words. It's appropriately sized for the tool's complexity and front-loads the key information about what metrics are retrieved and for what targets. Every word earns its place, though it could potentially benefit from slightly more structure for clarity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 3 parameters, no annotations, and no output schema, the description is insufficiently complete. It doesn't explain what the returned metrics mean, how they're formatted, whether there are rate limits, or what authentication might be required. The agent would need to guess about important operational aspects when invoking this tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 100% schema description coverage, the input schema already documents all three parameters thoroughly. The description adds no additional parameter semantics beyond what's in the schema - it doesn't explain the significance of 'fresh' vs 'historic' data sources, why subdomain inclusion matters, or provide examples of valid URL formats. The baseline 3 is appropriate when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Get Trust Flow, Citation Flow, backlink counts and other key metrics for one or more URLs/domains'. It specifies the verb ('Get'), resources ('metrics'), and targets ('URLs/domains'). However, it doesn't explicitly differentiate from sibling tools like 'get_backlinks' or 'get_ref_domains', which might provide overlapping or related data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. With multiple sibling tools like 'get_backlinks', 'get_ref_domains', and 'get_top_pages' that might offer related metrics, there's no indication of when this comprehensive metrics tool is preferred over more specific ones. No prerequisites or exclusions are mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_ref_domainsC

Get list of referring domains linking to a URL or domain

ParametersJSON Schema
NameRequiredDescriptionDefault
itemYesURL or domain to analyze
datasourceNoIndex to usefresh
countNoNumber of referring domains to return
orderByNoHow to order resultsTrustFlow
filterTopicNoFilter by topical Trust Flow topic

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states what the tool does but doesn't describe how it behaves: there's no mention of rate limits, authentication requirements, whether this is a read-only operation (implied by 'Get' but not explicit), potential costs, data freshness, or what the output format looks like (e.g., list of domains with metrics). For a tool with 5 parameters and no annotations, this is a significant gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that gets straight to the point with zero wasted words. It's appropriately sized for a tool with a clear purpose, and the structure is front-loaded with the core functionality. Every word earns its place by conveying essential information about what the tool does.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (5 parameters, no annotations, no output schema), the description is incomplete. It doesn't address behavioral aspects like rate limits or authentication, doesn't explain the output format (critical since there's no output schema), and provides no usage guidance. While the schema covers parameters well, the description fails to provide the contextual information needed for an agent to use this tool effectively beyond basic parameter filling.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 100%, meaning all parameters are well-documented in the schema itself. The description adds no additional parameter semantics beyond what's in the schema (e.g., it doesn't explain what 'TrustFlow' or 'CitationFlow' mean, or clarify the difference between 'fresh' and 'historic' datasources). With complete schema coverage, the baseline is 3, and the description doesn't compensate with extra context.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Get list' and the resource 'referring domains linking to a URL or domain', making the purpose immediately understandable. It distinguishes this tool from siblings like get_backlinks (which focuses on backlinks rather than referring domains) and get_anchor_text (which focuses on anchor text). However, it doesn't explicitly mention the data source (e.g., Majestic SEO) or the specific metrics involved, which would make it a perfect 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when to choose get_ref_domains over get_backlinks (which might provide more detailed backlink data) or compare_items (which might compare multiple items). There's no context about prerequisites, typical use cases, or limitations, leaving the agent to infer usage from the tool name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_subscription_infoA

Get current API subscription info, usage and remaining quota

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It clearly indicates this is a read operation ('Get') and specifies what information will be retrieved. However, it doesn't disclose important behavioral traits like authentication requirements, rate limits, error conditions, or whether the data is real-time versus cached. The description adds basic context but leaves significant gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is perfectly concise - a single sentence with no wasted words. It's front-loaded with the core purpose and efficiently lists the three key information types retrieved. Every word earns its place, making it easy for an agent to quickly understand the tool's function.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (zero parameters, no output schema), the description is reasonably complete for understanding what the tool does. However, as a read operation with no annotations, it should ideally mention authentication requirements or any constraints on usage frequency. The description covers the 'what' adequately but could better address the 'how' and 'when' aspects.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters with 100% schema description coverage, so the schema already fully documents the parameter situation. The description appropriately doesn't waste space discussing non-existent parameters. A baseline of 4 is appropriate for zero-parameter tools where the description focuses on purpose rather than parameter details.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with specific verbs ('Get') and resources ('API subscription info, usage and remaining quota'). It distinguishes itself from siblings by focusing on subscription metadata rather than content analysis or link data. However, it doesn't explicitly differentiate from potential alternative subscription-related tools (though none are listed).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context (checking API subscription status and quotas) but provides no explicit guidance on when to use this tool versus alternatives. No sibling tools appear to offer similar functionality, so the lack of comparative guidance is understandable but still leaves usage context implicit rather than explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_topicsC

Get topical Trust Flow breakdown for a URL or domain

ParametersJSON Schema
NameRequiredDescriptionDefault
itemYesURL or domain to analyze
datasourceNoIndex to usefresh

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions 'Trust Flow breakdown' but doesn't explain what this entails (e.g., metrics, format, or limitations like rate limits or data freshness). For a tool with no annotation coverage, this leaves significant gaps in understanding its behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core purpose without unnecessary words. Every part earns its place by specifying the action, resource, and target, making it highly concise and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no annotations and no output schema, the description is incomplete for a tool that likely returns complex data (e.g., 'Trust Flow breakdown'). It doesn't explain what the output includes, potential errors, or usage constraints, leaving the agent with insufficient context for effective use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents both parameters ('item' and 'datasource') with descriptions and enum values. The description adds no additional meaning beyond implying analysis of a URL/domain, which aligns with the schema. Baseline 3 is appropriate when the schema handles parameter documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb ('Get') and resource ('topical Trust Flow breakdown'), and identifies the target ('for a URL or domain'). It doesn't explicitly differentiate from sibling tools like 'get_index_item_info' or 'get_top_pages', which might also analyze URLs/domains, so it misses the highest score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. With sibling tools like 'get_backlinks' or 'get_ref_domains' that might offer related analyses, there's no indication of context, prerequisites, or exclusions for selecting this tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_top_pagesC

Get the most backlinked pages on a domain

ParametersJSON Schema
NameRequiredDescriptionDefault
itemYesDomain to analyze
datasourceNoIndex to usefresh
countNoNumber of pages to return
orderByNoHow to order resultsExtBackLinks

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states what the tool does but does not describe behavioral traits such as rate limits, authentication needs, error handling, or what the output looks like (e.g., format, pagination). For a tool with no annotations, this is a significant gap in transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It is front-loaded and wastes no space, making it highly concise and well-structured for quick understanding.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of a tool with 4 parameters, no annotations, and no output schema, the description is incomplete. It lacks details on behavioral aspects, output format, and usage context, which are essential for an agent to effectively invoke the tool. The description does not compensate for the gaps in structured data.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, meaning all parameters are documented in the schema. The description does not add any meaning beyond what the schema provides, such as explaining the significance of parameters like 'datasource' or 'orderBy' in context. With high schema coverage, the baseline score of 3 is appropriate as the description does not compensate with extra insights.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Get' and the resource 'most backlinked pages on a domain', making the purpose specific and understandable. However, it does not explicitly differentiate this tool from sibling tools like 'get_backlinks' or 'get_ref_domains', which might also involve backlink analysis, so it lacks sibling differentiation for a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It does not mention any context, prerequisites, or exclusions, nor does it refer to sibling tools for comparison. This leaves the agent without direction on appropriate usage scenarios.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

A3.5/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose targeting specific SEO/backlink analysis functions, with no significant overlap. For example, get_backlinks provides detailed backlink data, while get_ref_domains focuses on referring domains, and get_anchor_text covers anchor text distribution.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with 'get_' or 'compare_' prefixes, using snake_case throughout. The naming convention is predictable and readable across all nine tools, with no deviations in style.

Tool Count5/5

Nine tools is well-scoped for an SEO/backlink analysis server, providing comprehensive coverage without being overwhelming. Each tool earns its place by addressing specific aspects of domain/URL metrics and backlink analysis.

Completeness4/5

The tool set offers strong coverage for SEO metrics and backlink analysis, including key operations like retrieving metrics, backlinks, referring domains, and subscription info. A minor gap exists in update/management operations (e.g., no tool to modify or delete data), but core analysis workflows are well-covered.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    C
    quality
    D
    maintenance
    An MCP server that integrates with the Haloscan SEO API to provide tools for keyword research, SERP analysis, and domain performance tracking. It enables users to perform comprehensive SEO tasks, including competitor analysis and visibility monitoring, within MCP-compatible clients.
    33
    66
    1
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    An MCP server that gives AI assistants 23 SEO tools for rank tracking, Google Analytics, site audits, keyword research, competitive analysis, and more, accessible through natural language.
    25
    10
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    An MCP server that provides SEO analysis tools including backlink analysis, keyword research, and traffic estimation using Ahrefs data, with CAPTCHA solving and caching.
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/MattiooFR/majestic-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server