Skip to main content
Glama

LLM 모델 카탈로그

llm_models
Read-only

List available text-generation LLM models with per-token pricing and max context. 텍스트 생성 모델 카탈로그를 반환합니다. 각 모델의 1M 토큰당 input/output 단가(포인트), 계열·크기·멀티모달 여부·태그·추천 용도(use_cases)·max_context 를 한 응답에 포함합니다. llm_chat Tool의 model 입력값을 찾을 때 사용합니다. 무료입니다. [무료]

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagNo특수 태그 필터 — 'reasoning'(추론 특화) | 'coder'(코딩 특화)
familyNo모델 계열 필터 (deepseek, qwen, glm, google, nvidia, llama, mistral, gpt-oss, moonshot, seed, mimo, phi)
use_caseNo추천 용도 필터 — 'general' | 'reasoning' | 'coding' | 'multimodal' | 'economy'
multimodalNo멀티모달(이미지 이해) 지원 여부 필터 (true/false)

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, and the description adds behavioral context beyond that: it notes the response is free, includes all listed fields in one response, and covers text-generation models only. No contradiction with annotations; the description supplements them with cost and response-aggregation details.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the key English purpose, but it is somewhat redundant: the Korean translation repeats the English statement, and '무료입니다' appears twice ('무료입니다. [무료]'). It could be tightened without losing meaning, but it is still reasonably compact and structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description compensates by naming the exact fields returned (input/output unit price per 1M tokens, family, size, multimodal flag, tags, use_cases, max_context) and stating they come in a single response. It also explains the tool's relationship to llm_chat. This is adequate for a read-only catalog tool, though it doesn't describe response pagination or exact formatting.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% with detailed descriptions for all four parameters (tag, family, use_case, multimodal), so the description does not need to compensate. The tool description adds context about output fields but not about parameter semantics beyond what the schema already provides, matching the baseline of 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'List available text-generation LLM models with per-token pricing and max context.' It also differentiates from siblings by stating that the tool is used to find model input values for llm_chat, which distinguishes it from chat, image generation, and text processing tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides clear context: 'llm_chat Tool의 model 입력값을 찾을 때 사용합니다' (use when finding model input values for llm_chat Tool). This tells the agent when to select this tool, though it does not explicitly state when not to use it or name alternatives as exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.2/5.0
Disambiguation5/5

llm_chat and llm_models form a clear pair (generic chat vs model catalog), while text_polish and text_summary are narrowly scoped fixed-purpose utilities. Their descriptions make the boundaries obvious, so an agent should not misroute a request between them.

Naming Consistency4/5

All names are lowercase snake_case and follow a readable domain_prefix pattern (llm_* and text_*). The conventions are not perfectly uniform, though: text_summary is a noun where text_polish uses a verb, and llm_models is a catalog noun rather than an action.

Tool Count5/5

Four tools is a compact, well-scoped set with no redundant entries: model discovery, general chat, and two specialized text operations. Each tool earns its place for this server's apparent purpose.

Completeness5/5

The tool surface covers the core LLM workflow (model lookup plus chat) and the advertised text-polish/summary operations without obvious dead ends. The stateless chat design is intentional, and pricing information is provided through llm_models.