Skip to main content
Glama
Waicy
by Waicy

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

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

CapabilityDetails
tools
{
  "listChanged": true
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
read_pdf_textB
读取PDF文件并提取文本内容

Args:
    file_path: PDF文件绝对路径(必须是绝对路径)
    page_numbers: 要提取的页面号列表,如果为None则提取所有页面
    extract_tables: 是否提取表格数据

Returns:
    包含文本内容、页面信息等的字典
get_pdf_infoB
获取PDF文件的基本信息

Args:
    file_path: PDF文件绝对路径(必须是绝对路径)

Returns:
    包含PDF元数据信息的字典
list_pdfs_in_directoryB
列出指定目录下的所有PDF文件

Args:
    directory_path: 目录绝对路径(必须是绝对路径)

Returns:
    包含PDF文件列表的字典

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.5/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: get_pdf_info retrieves metadata, list_pdfs_in_directory enumerates files, and read_pdf_text extracts content. There is no overlap in functionality, making tool selection unambiguous for an agent.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with snake_case: get_pdf_info, list_pdfs_in_directory, and read_pdf_text. The naming is predictable and readable throughout the set.

Tool Count4/5

With 3 tools, the server is well-scoped for basic PDF operations, but it feels slightly thin as it lacks tools for creating, editing, or deleting PDFs. However, the tools provided are essential and earn their place.

Completeness3/5

The server covers core read-only operations (info, listing, text extraction) but has notable gaps in the PDF lifecycle, such as creation, modification, merging, or deletion. Agents can work around this for basic tasks, but advanced workflows may be limited.

Maintenance

ActivityInactive
ResponsivenessNo issues