@gluedly/mcp-server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@gluedly/mcp-serverList my mapped pages and show the latest snapshot data as Markdown"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@gluedly/mcp-server
Model Context Protocol (MCP) server that exposes Gluedly’s public API to AI clients such as Claude Desktop.
Requirements
Node.js 18+
A Gluedly API key
Related MCP server: spidra-mcp-server
Environment variables
Variable | Required | Default |
| Yes | — |
| No |
|
Tools
Tool | Description |
|
|
|
|
| Resolve latest snapshot if needed, then |
Claude Desktop config
Add the server to your claude_desktop_config.json:
{
"mcpServers": {
"gluedly": {
"command": "npx",
"args": ["-y", "@gluedly/mcp-server"],
"env": {
"GLUEDLY_API_KEY": "YOUR_GLUEDLY_API_KEY"
}
}
}
}Optional custom API host:
{
"mcpServers": {
"gluedly": {
"command": "npx",
"args": ["-y", "@gluedly/mcp-server"],
"env": {
"GLUEDLY_API_KEY": "YOUR_GLUEDLY_API_KEY",
"GLUEDLY_BASE_URL": "https://gluedly.com/api/v1"
}
}
}
}Local development
bun install
bun run build
bun run test
GLUEDLY_API_KEY=… node dist/index.jsAvailable Tools
3 toolsgluedly_get_snapshotA
Fetch clean extracted rows or prompt-ready Markdown for a page snapshot.
| Name | Required | Description | Default |
|---|---|---|---|
| format | No | Response format: "json" (rows) or "markdown" | |
| page_id | Yes | Gluedly page ID | |
| snapshot_id | No | Snapshot ID; omit to use the latest snapshot |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of explaining behavioral traits. 'Fetch' implies read-only behavior, but the description does not explicitly state that this does not trigger a new scrape or that snapshot_id defaults to the latest snapshot when omitted.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence with no filler, front-loading the key action and the two useful return modes. It is compact but still informative enough to be scannable.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The parameter schema handles the input requirements well, and the description identifies the main output forms, but no output schema and no annotations leave the tool lifecycle unclear. The description could better say whether the snapshot must already exist and how this tool relates to trigger_scrape.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the parameters page_id, format, and snapshot_id already have clear descriptions. The description adds a small semantic layer by explaining the return options, but it does not significantly go beyond what the schema already provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names the action ('Fetch'), the resource ('a page snapshot'), and the two output forms ('clean extracted rows' or 'prompt-ready Markdown'). This clearly distinguishes the tool from the sibling tools: it is about retrieving snapshot data, not listing pages or triggering a new scrape.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The intended usage is implied: call this tool when you want the extracted content from an existing page snapshot. However, the description does not explicitly say to use gluedly_trigger_scrape when a fresh snapshot is needed, nor does it mention the lifecycle between creating and fetching a snapshot.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gluedly_list_pagesA
Retrieve all mapped scraping pages in your Gluedly workspace.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
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 only says 'Retrieve all mapped scraping pages' and does not describe return format, pagination, permissions, stability, or any side effects. For a zero-parameter read operation this is a notable but not severe gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. Every word contributes to explaining the tool's action and scope.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (no parameters, no nested structure, no output schema), the description is mostly complete for invoking the tool. However, it lacks detail about what a returned page representation looks like, which an agent might need for downstream steps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and the input schema covers everything by being empty. There is no parameter semantics to explain, so the description does not need to provide additional parameter detail. The baseline for a zero-parameter tool is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Retrieve') and a clear resource ('all mapped scraping pages in your Gluedly workspace'), which also differentiates it from the sibling tools that trigger scrapes or get snapshots. The scope is unambiguous even without a title.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when you need to list all mapped pages, but it does not provide explicit when-to-use guidance or contrast with the siblings (e.g., when to trigger a scrape or get a snapshot instead). No exclusions or alternatives are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gluedly_trigger_scrapeA
Trigger an immediate web scrape execution for a specific Gluedly page ID.
| Name | Required | Description | Default |
|---|---|---|---|
| page_id | Yes | Gluedly page ID |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full behavioral burden. It discloses the triggering action but does not explain side effects, whether the scrape is asynchronous, whether it returns a snapshot, or whether it overwrites existing data.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence with no filler. The core action is front-loaded and immediately understandable.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter trigger tool, the description gives enough for the agent to understand the action and target resource. It could be improved with post-trigger behavior, but the basic invocation context is complete enough.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already fully documents page_id as an integer and 'Gluedly page ID' with 100% coverage. The description adds only 'specific' to the parameter context, providing limited additional meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb, 'Trigger', and a clear resource, 'web scrape execution for a specific Gluedly page ID'. This makes it immediately distinguishable from sibling tools like list_pages and get_snapshot, which imply read/list operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The context is implied: use this when an immediate scrape of a known Gluedly page is needed. However, the description does not explicitly state when to avoid this tool, what prerequisites exist, or how it relates to list_pages and get_snapshot as an alternative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
v0.1.1- First observed
gluedly_get_snapshot - First observed
gluedly_list_pages - First observed
gluedly_trigger_scrape
TDQS
Each tool serves a distinct phase of the scraping workflow: listing pages, triggering a scrape, and fetching snapshot data. There is no functional overlap or ambiguity between the tools.
All tool names follow the same pattern: the 'gluedly_' prefix followed by a verb_noun (list_pages, trigger_scrape, get_snapshot). This makes the tool set highly predictable and easy to navigate.
Three tools is minimal but well-scoped for the server's purpose of interacting with an existing Gluedly scraping workflow. Each tool fills a necessary role, and the count is within the ideal range.
The server covers the essential end-to-end flow: list pages, trigger a scrape, and collect the extracted data. It lacks CRUD/manage capabilities for pages, but this is likely outside the MCP server's intended scope and easily workable.
Maintenance
Related MCP Connectors
Cloud scraping & crawling API for AI agents. Turn any URL into clean, LLM-ready markdown.
Web data tools for AI agents: pages as markdown, search, maps, commerce, jobs, AI answers.
Screenshots, PDFs and Markdown from any URL or HTML for AI agents, via the SnapForge API
Fetch pages as markdown, search web and news, extract structured data. For AI agents.
Related MCP Servers
- AlicenseAqualityDmaintenanceLets AI agents like Claude capture website screenshots, check cache status, and monitor usage.32MIT

spidra-mcp-serverofficial
AlicenseAqualityBmaintenanceEnables AI assistants to scrape pages, batch-process URLs, and crawl entire websites with AI-powered extraction.1237MIT- FlicenseNot gradedqualityCmaintenanceEnables scraping single pages or crawling entire websites, converting content to markdown and optionally extracting structured data with Claude.-

EnConvert MCP Serverofficial
AlicenseAqualityAmaintenanceEnables AI agents to convert files, render web pages to markdown/PDF/screenshots, search the live web, extract structured data, ingest RAG-ready chunks, and monitor pages for changes through a single API key.242037MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Gluedly/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server