ClimbMCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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 | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_books_and_chaptersA | List all available books and their PDF chapters with extraction status and content metadata |
| search_contentA | Search within extracted PDF text and return relevant sections with page references |
| get_chapter_sectionB | Get a specific section of a chapter with text and associated images |
| extract_chapter_contentA | Extract and cache text and images from a chapter for future searches |
| get_chapter_textA | Get readable text from a chapter - combines extraction and cleaning into one tool |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
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.