Link Finder MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| HOST | No | Bind address in hosted mode | 0.0.0.0 |
| PORT | No | Port to bind in hosted mode | 8000 |
| MCP_TRANSPORT | No | stdio (local), sse or http (hosted) | stdio |
| MCP_BEARER_TOKEN | No | Shared secret clients send as Authorization: Bearer <token> (hosted only) | |
| MCP_ALLOWED_HOSTS | No | Comma-separated Host allowlist for DNS-rebinding protection. Empty = disabled. Supports a :* port wildcard. | |
| LINK_FINDER_API_KEY | Yes | Your Link Finder API key | |
| MCP_ALLOWED_ORIGINS | No | Comma-separated Origin allowlist (used with the above) | |
| LINK_FINDER_BASE_URL | No | Override the API base URL | https://app.link-finder.net/api/v2 |
| LINK_FINDER_DATA_DIR | No | Where results + history are saved (empty = disable) | data |
| LINK_FINDER_HTTP_TIMEOUT | No | HTTP timeout in seconds | 120 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_accountA | Get your Link Finder plan, remaining credits, and available features. Always call this FIRST in an automated workflow to confirm which endpoints your plan unlocks and how many credits remain before spending any. |
| list_platformsA | List every supported netlinking platform (ereferer, paperclub, ...). |
| list_locationsA | List available countries/locations for keyword search. |
| keyword_searchA | Find backlink opportunities from keywords (SERP analysis). |
| competitor_analysisA | Analyze a competitor's referring domains available on netlinking platforms. |
| ai_searchA | AI-powered backlink prospecting (SERP + competitor + semantic matching). |
| similar_domainsA | Find domains similar to a seed domain (or to a whole project) via AI embeddings. |
| create_projectB | Create a project to organize favorite domains. |
| list_projectsA | List all projects with their favorite and ordered counts. |
| project_favoritesA | Get all favorite domains in a project, with full SEO metrics and prices. |
| add_favoriteB | Add or remove a domain from a project. |
| update_noteA | Add or update a note on a favorite domain. |
| check_domainA | Check a single domain across all netlinking platforms (API plan only). |
| bulk_checkA | Check up to 50,000 domains at once (API plan only). |
| get_search_historyA | Read the locally saved search history (data/searchHistory.json). Check this before launching a new search to avoid duplicate work and save credits. Returns an empty list when nothing has been saved yet. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| backlink_workflow | Guided interview + workflow for finding backlink opportunities. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 15 tools
Most tools have clearly distinct purposes, though 'bulk_check' and 'check_domain' could be confused as both involve checking domains. Descriptions clarify the difference, so disambiguation is strong but not perfect.
Tool names predominantly follow a verb_noun pattern in snake_case (e.g., 'add_favorite', 'check_domain'). A few names deviate like 'project_favorites' (noun_noun) and 'similar_domains' (adjective_noun), but overall consistency is high.
With 15 tools, the count is well-scoped for a link finder/SEO tool. Each tool serves a distinct function without bloat, covering search, management, and account features.
The tool set covers core workflows: finding opportunities (keyword_search, ai_search, similar_domains, competitor_analysis), checking domains (check_domain, bulk_check), and managing favorites/projects. Minor gaps exist, such as lacking a delete_project tool, but the surface is largely complete for the domain.