ClimbMCP
Click 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., "@ClimbMCPfind chapters about sport climbing techniques"
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.
Climbing MCP Server
An MCP (Model Context Protocol) server for serving climbing book PDF chapters to Claude.
Features
Store PDF chapters in the
chapters/directoryList all available chapters with metadata
Search for relevant chapters based on query
Serve PDF content directly to Claude for reading
Related MCP server: RAG Notes Search MCP Server
Setup
Install dependencies:
npm installAdd your PDF files to the
chapters/directoryCreate corresponding
.jsonmetadata files for each PDF with:title: Chapter titledescription: Brief descriptionkeywords: Array of relevant keywords for search
Usage
Add to your Claude Desktop configuration:
{
"mcpServers": {
"climbing-pdf": {
"command": "node",
"args": ["E:/Projects/climbing-mcp-server/src/index.js"]
}
}
}Available Tools
list_chapters: Lists all available PDF chaptersget_chapter: Retrieves a specific PDF for Claude to readsearch_relevant_chapter: Finds the most relevant chapters based on a query
Adding PDFs
Place PDF files in the
chapters/directoryCreate a corresponding
.jsonfile with the same name (e.g.,chapter1.pdf→chapter1.json)The metadata helps with search and relevance scoring
Available Tools
5 toolsextract_chapter_contentA
Extract and cache text and images from a chapter for future searches
| Name | Required | Description | Default |
|---|---|---|---|
| book_name | Yes | The name of the book directory | |
| chapter_name | Yes | The filename of the chapter PDF to extract | |
| force_reextract | No | Force re-extraction even if cached version exists |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It does disclose a key behavioral trait: the tool caches extracted content, which signals a persistent side effect. However, it does not describe what happens on cache hits, whether force_reextract overwrites, what it returns, or permissions needed.
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?
One sentence with no wasteful words. The action, resource, side effect, and purpose are all packed in efficiently and front-loaded.
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 tool with no annotations, no output schema, and a caching side effect, this description is too thin. It leaves important questions unanswered: does it return the extracted content or just cache it, how does force_reextract interact with existing cache entries, and when should the agent use this versus the sibling get/search tools?
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 description coverage is 100%, so the schema already documents all three parameters. The description adds no extra semantic meaning beyond 'text and images', so the baseline of 3 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?
States a specific verb ('Extract'), resource ('text and images from a chapter'), and a clear side effect ('cache') for a defined purpose ('future searches'). This clearly differentiates it from sibling retrieval tools like get_chapter_text and get_chapter_section.
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 phrase 'for future searches' implies this is a preparation step before search_content, but it does not explicitly state when to choose this over get_chapter_text or get_chapter_section, nor does it mention any exclusions or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_chapter_sectionB
Get a specific section of a chapter with text and associated images
| Name | Required | Description | Default |
|---|---|---|---|
| book_name | Yes | The name of the book directory | |
| chapter_name | Yes | The filename of the chapter PDF | |
| context_level | No | Amount of surrounding context to include | detailed |
| section_topic | Yes | Specific topic or technique to focus on (e.g., "trad anchors", "belaying", "rappelling") |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description reveals that the tool returns text and associated images, which is a meaningful behavioral disclosure. However, with no annotations provided, the description carries the full burden and does not mention failure behavior, how context_level affects the output, or how images are delivered. Since this is a read operation, destructive behavior is not a concern, but the rest of the behavioral profile is thin.
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 clause adds useful information about the target scope and returned contents. It is appropriately concise, though the brevity comes at the cost of contextual completeness.
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?
There is no output schema, and the description only says 'text and associated images,' leaving ambiguous the output format and what granularity 'specific section' means. It does not explain how the context_level parameter (brief/detailed/comprehensive) alters results, nor does it distinguish this tool from get_chapter_text or extract_chapter_content. A more complete description would need a usage example and a note on when to choose this over siblings.
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 description coverage is 100%, so all four parameters are already described in the input schema. The tool description adds no parameter-specific detail beyond implying the output content. The baseline of 3 applies because the schema does the heavy lifting for parameter documentation.
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 states a specific verb and resource: 'Get a specific section of a chapter' and clarifies the output includes 'text and associated images.' It implicitly distinguishes itself from the sibling get_chapter_text by emphasizing a targeted section rather than whole-chapter content, though it does not explicitly name alternatives.
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?
No guidance is given on when to use this tool versus siblings like get_chapter_text, search_content, or extract_chapter_content. The description contains no exclusions, prerequisites, or context triggers. The only subtle usage hint is the word 'specific,' which weakly implies a targeted lookup, but this is not enough to route an agent correctly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_chapter_textA
Get readable text from a chapter - combines extraction and cleaning into one tool
| Name | Required | Description | Default |
|---|---|---|---|
| length | No | Number of characters to return | |
| book_name | Yes | The name of the book directory | |
| start_chars | No | Starting character position (0 for beginning of chapter) | |
| chapter_name | Yes | The filename of the chapter PDF | |
| force_reextract | No | Force re-extraction even if cached version exists |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It adds that the tool performs extraction and cleaning and returns readable text, but it does not mention caching behavior, force re-extraction, or truncated output by default. These are visible only in parameter descriptions, not in the tool description.
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?
One sentence that leads with the core purpose and follows with the key differentiator. No wasted words or redundancy.
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 description is enough to identify what the tool returns, and the schema handles parameter semantics. However, it leaves gaps around how this relates to get_chapter_section and extract_chapter_content, and it does not surface that results are limited by length/start_chars. Some of this is recoverable from schema defaults, but not fully.
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% and every parameter has a useful description, such as start_chars as the starting character position and force_reextract as a cache override. The tool description adds no additional parameter meaning, so it sits at the high-coverage baseline of 3.
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?
States a specific action and resource: getting readable text from a chapter. The phrase 'combines extraction and cleaning into one tool' differentiates it from the sibling extract_chapter_content, and 'from a chapter' distinguishes it from get_chapter_section.
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?
Implies it should be used when cleaned readable text is wanted instead of raw extraction, but it does not explicitly say when to use alternatives like get_chapter_section or extract_chapter_content. No when-not conditions or alternative tool names are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_books_and_chaptersA
List all available books and their PDF chapters with extraction status and content metadata
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It clearly signals a read-only listing operation and specifies what metadata is included, but it does not mention pagination, result size, failure behavior, or any access limitations. For a simple listing tool, this is adequate but not deeply transparent.
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 that immediately identifies the action and scope, then adds useful specifics about status and metadata. Every part earns its place, with no filler or repetition.
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 zero-parameter listing tool with no output schema and no annotations, the description provides enough information for an agent to understand what will be returned: books, chapters, extraction status, and content metadata. It could add details about output format or scale, but those are reasonable gaps for a simple list endpoint.
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, so there is nothing for the description to explain beyond what the empty schema already shows. The description compensates by clarifying what the returned data contains, which is the relevant semantic information for this tool.
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 'List' with a clear resource scope: books and their PDF chapters, plus the particular data included (extraction status, content metadata). It is immediately distinct from siblings that search or extract content, and there is no ambiguity about what the tool returns.
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 it should be used when an agent needs an overview of available books and chapters, but it does not explicitly state when to choose it over siblings such as search_content or get_chapter_text. There is no when-not guidance or mention of alternatives, leaving the routing decision mostly to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_contentA
Search within extracted PDF text and return relevant sections with page references
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query for specific climbing topics, techniques, or concepts | |
| max_results | No | Maximum number of results to return (1-5) |
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 does add useful behavioral context by mentioning that results are relevant sections with page references. However, it does not explain query matching behavior, what counts as 'relevant,' or what happens when there are no matches.
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. It communicates the core action, resource, and output type efficiently.
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 simple two-parameter tool, the description covers the main purpose and return value. However, it leaves ambiguity about the search scope (single PDF vs. all extracted text), search semantics, and how max_results affects ranking or relevance. These gaps matter given there is no output schema and no annotations.
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 provides full descriptions for both parameters, so the baseline is 3. The description adds general context about returning relevant sections with page references but does not add parameter-specific meaning beyond what the schema states.
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 states a specific verb ('search') and resource ('extracted PDF text') and specifies the return value ('relevant sections with page references'). This clearly differentiates it from sibling tools that list, extract, or get chapter content.
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 when to use the tool: when the user needs to search within extracted PDF text. However, it does not explicitly distinguish it from alternatives like get_chapter_section or extract_chapter_content, nor does it clarify whether the search covers a single document or all extracted PDFs.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Most tools have clear, distinct purposes: listing, searching, section retrieval, extraction, and full-text fetching. The only potential confusion is between extract_chapter_content and get_chapter_text, both of which involve extraction, but their descriptions sufficiently separate the low-level caching action from the combined extraction-and-cleaning result.
All tool names follow a consistent snake_case verb_noun pattern, with clear verbs like list, search, get, and extract. The naming makes the tool set predictable and easy to navigate.
Five tools is a well-scoped size for this server's purpose. Each tool addresses a distinct part of the workflow: discovering books, extracting content, searching text, and retrieving specific sections or readable chapter text.
The tool surface covers the full reading and search lifecycle for a PDF chapter repository: list available books, extract content, search across text, and retrieve sections or readable text. No critical actions are missing for the apparent domain.
Maintenance
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
PDF tools for Claude: merge, split, compress, convert, OCR & more. Requires a PDFHaul API key.
Parse, extract, split, and ask over digital PDFs (text layer, no OCR) from Cursor and Claude.
Read, edit, publish, and preview your pepita websites from Claude.
Search, browse & read 340+ Claude Code marketing & SEO skills from any MCP client.
Related MCP Servers
- FlicenseAqualityCmaintenanceEnables Claude Code to interact with Obsidian vaults by providing tools for multi-term searching, reading notes, and exploring tag-based relationships. It allows users to query, analyze, and manage their personal knowledge base directly through natural language.9
- FlicenseNot gradedqualityCmaintenanceEnables semantic search over personal study notes by exposing a vector search tool that Claude Desktop can call to retrieve relevant note content and synthesize grounded answers.
- AlicenseNot gradedqualityBmaintenanceEnables Claude to search, read, write, and manage a local markdown vault through 8 tools, turning your notes into an AI-accessible knowledge base.3AGPL 3.0
- AlicenseNot gradedqualityDmaintenanceEnables Claude to read, write, search, and manage an Obsidian vault with tools for notes, tags, folders, and full-text search.16MIT
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/MateoGonzalezGomez/ClimbMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server