Skip to main content
Glama
lfnovo
by lfnovo

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
PROMPT_PATHNoPath to your custom prompt templates directory
GOOGLE_API_KEYNoYour Google API key
OPENAI_API_KEYNoYour OpenAI API key for AI-powered processing and transcription
CCORE_URL_ENGINENoForce URL engine selection (auto, simple, firecrawl, jina)auto
CCORE_DOCUMENT_ENGINENoForce document engine selection (auto, simple, docling)auto
CCORE_AUDIO_CONCURRENCYNoNumber of concurrent audio transcriptions (1-10, default: 3)3

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
}
logging
{}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
extensions
{
  "io.modelcontextprotocol/ui": {}
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
extract_contentB

Extract content from a URL or file. Does not require an API key for most sources (web pages, PDFs, documents, YouTube transcripts). API key is only needed for audio/video transcription.

Args: url: URL to extract content from (web page, YouTube video, PDF link, etc.) file_path: Local file path to extract content from engine: Optional extraction engine override, routed by input type. With url: auto, simple, firecrawl, jina, crawl4ai. With file_path: auto, simple, docling — docling requires pip install "content-core[docling]" and fails with a configuration error when the extra is missing, in which case use auto or simple. Any other value is rejected with an error naming the accepted ones. formulas: Enable formula extraction via Docling (requires engine=docling) pictures: Enable image description + chart data extraction via Docling (requires engine=docling) no_ocr: Disable OCR in Docling (requires engine=docling)

Returns: Extracted text content

summarize_contentA

Summarize content using LLM with optional context. Requires OPENAI_API_KEY (or another LLM provider key) to be configured.

Args: content: The text content to summarize context: Optional context to guide summarization (e.g., "summarize as bullet points")

Returns: Summarized text

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.7/5.0

Scored across 2 tools

Disambiguation5/5

The two tools have clearly distinct purposes—extraction vs. summarization—with no functional overlap. Each tool's parameters are also well-differentiated, avoiding ambiguity.

Naming Consistency5/5

Both tool names follow the same verb_noun pattern (extract_content, summarize_content), providing a predictable and consistent naming convention.

Tool Count3/5

With only 2 tools, the set is borderline thin for a content-processing server. While both are useful, the count is minimal and could be expanded with additional content operations.

Completeness4/5

The tools cover the core content workflow of extraction and summarization, but lack other common operations (e.g., translation, keyword extraction) that would round out a comprehensive content toolkit. Minor gaps exist.

Maintenance

ActivityMaintained
ResponsivenessWithin a week