Skip to main content
Glama

Server Details

LLM chat, text summarization and text polishing

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.

Claim APICK AI

Claiming proves that you control this connector and unlocks listing details, thumbnails, health checks, and analytics. It does not change or interrupt the running server.

Complete one method below. Compare the methods and read troubleshooting steps.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
lead788/apick-mcp
GitHub Stars
0
Server Listing
apick-mcp

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.1/5 across 4 of 4 tools scored.

Server CoherenceA
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.

Available Tools

4 tools
llm_chatLLM 채팅A
Read-only
Inspect

Send a chat request to a selected LLM model and receive the assistant reply. 선택한 LLM 모델에 대화를 보내고 assistant 응답을 받습니다. 서버는 대화 히스토리를 보관하지 않는 stateless 방식 — 매 호출마다 전체 히스토리를 messages 로 전송하고, 응답의 compacted_messages 를 다음 턴의 messages 로 그대로 재사용합니다. 사용 가능한 모델은 llm_models Tool로 조회합니다. 토큰 사용량에 비례해 포인트가 차감됩니다. [무료]

ParametersJSON Schema
NameRequiredDescriptionDefault
modelYes모델 id (llm_models Tool로 조회 가능, 예: openai/gpt-oss-120b)
speedNo응답 속도/추론 깊이 — 'fast'(얕게, 빠름) | 'medium' | 'slow'(깊게, 느림). 한글 '빠름'|'중간'|'느림' 허용. 추론 특화 모델에서 효과가 큽니다
systemNosystem 프롬프트 (역할·페르소나·정책·배경지식). 미지정 시 기본 한국어 어시스턴트 프롬프트가 적용됩니다
compactNo히스토리 압축 옵션 { strategy: 'none'(기본) | 'sliding_window', window_pairs: 유지할 user/assistant 페어 수 (기본 10, 최소 1) }. 긴 대화의 input 토큰 누적 방지
contentNo단발 입력 — 사용자 메시지 한 건만 보내는 간편 형태. messages 와 둘 중 하나는 필수
messagesNoOpenAI 형식 [{role, content}] 배열. role 은 'system'|'user'|'assistant'. content 와 둘 중 하나는 필수, 동시 지정 시 messages 우선. 멀티턴 대화는 응답의 compacted_messages 를 다음 턴에 그대로 전송
max_tokensNo응답 최대 토큰. 미지정 시 모델 컨텍스트 기반 안전 상한으로 자동 설정, 상한 초과 지정 시 자동 조정
temperatureNo출력 다양성 0.0~2.0. 낮을수록 재현성, 높을수록 창의성 (미지정 시 모델 기본값)
Behavior5/5

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

Beyond readOnlyHint/openWorldHint, it discloses statelessness, requiring the full conversation history on each call and the reuse of compacted_messages for the next turn. It also flags the point deduction proportional to token usage, adding cost awareness.

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

Conciseness4/5

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

The description is bilingual and includes several technical details, but every sentence conveys meaningful information: purpose, stateless behavior, model lookup, and cost. It is somewhat longer than necessary due to the duplication, but remains well-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 mentions receiving an 'assistant reply' and the compacted_messages field, but does not detail the full response structure (e.g., usage metadata). Yet it covers the core workflow and prerequisites adequately for a chat tool.

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?

All 8 parameters are described in the schema with 100% coverage, so the description doesn't need to explain each parameter. It reinforces the critical multi-turn mechanism (compacted_messages) which the schema already documents, adding no new semantic value beyond the baseline.

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, action-oriented statement: 'Send a chat request to a selected LLM model and receive the assistant reply.' It clearly names the resource (LLM model) and the operation (chat request), and differentiates from siblings like llm_models (which lists models) and text_polish/text_summary (which are specialized text tasks).

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 explicitly points to llm_models for discovering available models, establishing a prerequisite workflow. However, it does not explicitly state when to prefer this over specialized text tools or provide exclusions, so it offers clear context but no full when-not guidance.

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

llm_modelsLLM 모델 카탈로그A
Read-only
Inspect

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

ParametersJSON 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)
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.

text_polish텍스트 다듬기 AIA
Read-only
Inspect

Polish a text (up to 100,000 characters) by fixing grammar, spelling, and awkward phrasing. 입력 텍스트(최대 10만 자)의 문법 오류, 맞춤법·오타, 어색한 표현, 문장 순서를 의미를 유지한 채 자연스럽게 다듬습니다. 모델·파라미터는 서버가 고정하며 빠른 응답에 최적화되어 있습니다. 토큰 수와 무관하게 요청당 고정 포인트가 차감됩니다. [호출당 100포인트]

ParametersJSON Schema
NameRequiredDescriptionDefault
textYes다듬을 원문 텍스트 (최대 100,000자)
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=false, so the description does not need to repeat safety. It adds valuable behavioral context: fixed model/parameters, optimized for fast response, fixed point deduction regardless of token count, and meaning preservation. This goes beyond the annotations, though it omits output shape and failure behavior. No contradiction.

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

Conciseness4/5

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

The description is front-loaded with the core purpose in English, followed by a Korean translation that adds minor detail (sentence order) and cost/performance notes. The bilingual repetition is slightly redundant, but the overall length is appropriate and each sentence contributes to understanding. It is well-structured but not maximally concise.

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?

Given the tool's simplicity (one parameter, no output schema, strong safety annotations), the description provides sufficient context: purpose, size limit, cost, and performance traits. It does not explicitly state the return value, but that is obvious for a polishing operation. Minor gaps like language support or error cases are not critical for this scope.

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?

The input schema fully covers the single 'text' parameter with a description including the 100,000-character limit. The tool description repeats this limit but adds no new semantic detail (e.g., formatting, language, or examples). Since schema coverage is 100%, the baseline of 3 applies, and the description does not elevate it.

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 clearly states a specific verb ('Polish'), a resource ('a text'), and the scope (up to 100,000 characters). It also enumerates the types of fixes (grammar, spelling, awkward phrasing), which distinguishes it from sibling tools like text_summary (summarization) and llm_chat (conversation). The title '텍스트 다듬기 AI' reinforces the purpose.

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

Usage Guidelines3/5

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

The description implies usage through its purpose and constraints (max length, fixed server parameters, fast response, cost), but it does not explicitly state when to prefer this tool over alternatives or provide exclusions (e.g., 'for large texts use X'). No alternative tools are mentioned. The guidance is implicit rather than explicit.

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

text_summary텍스트 요약 AIA
Read-only
Inspect

Summarize a long text (up to 100,000 characters) into a concise Korean summary. 입력 텍스트(최대 10만 자)의 핵심 내용을 간결하고 정확하게 요약합니다. 모델·파라미터는 서버가 고정하며 빠른 응답에 최적화되어 있습니다. 토큰 수와 무관하게 요청당 고정 포인트가 차감됩니다. [호출당 100포인트]

ParametersJSON Schema
NameRequiredDescriptionDefault
textYes요약할 원문 텍스트 (최대 100,000자)
Behavior5/5

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

Beyond the annotations (readOnlyHint, openWorldHint), the description discloses that model/parameters are server-fixed, optimized for speed, and that a fixed point cost is deducted per request regardless of token count, including the exact cost of 100 points per call. This adds substantial behavioral context not captured elsewhere.

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

Conciseness4/5

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

The description is mostly concise and front-loaded, but the first two sentences duplicate the same information in English and Korean. It includes useful cost and model-fixed details. The redundancy is minor, so it earns a 4.

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?

For a simple tool with one parameter and no output schema, the description covers the main aspects: purpose, input limit, model behavior, speed, and cost. It could explicitly mention the output format or input language, but these are minor gaps, making it largely complete.

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?

The input schema already describes the single 'text' parameter with max 100,000 characters (100% coverage). The description adds no additional meaning beyond restating the character limit and does not provide syntax or formatting details, 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.

Purpose5/5

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

The description clearly states the tool's function: 'Summarize a long text (up to 100,000 characters) into a concise Korean summary.' It uses a specific verb (summarize) and resource (long text), and distinguishes from siblings like text_polish by focusing on summarization rather than polishing.

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

Usage Guidelines3/5

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

The description implies the tool is for summarization but does not explicitly say when to use it versus alternatives like text_polish or llm_chat. It provides context (fixed model, fast response, cost) but no exclusions or alternative references, leaving usage to be inferred.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.