Skip to main content
Glama

Server Details

Technical analysis (RSI, MA, signal score) for 9,400+ global stocks, by ticker or name.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

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 3.9/5 across 5 of 5 tools scored. Lowest: 3.3/5.

Server CoherenceA
Disambiguation4/5

Tools are mostly distinct: fetch for single full record, get_technical_analysis for multiple stocks' indicators, list for browsing, screen for filtering, search for lookup. Minor overlap between fetch and get_technical_analysis (both provide technical data) but descriptions clarify single vs. multiple.

Naming Consistency5/5

All tools use consistent snake_case naming with action-oriented verbs (fetch, get_, list_, screen_, search). No mixing of conventions.

Tool Count5/5

5 tools is well-scoped for a technical analysis server: covering full record retrieval, technical indicators, universe listing, screening, and search. Neither too few nor too many.

Completeness4/5

The tool set covers core workflows: browse, search, single-stock details, multi-stock analysis, and screening. Minor gap: no direct comparison tool, but overall surface is adequate for its purpose.

Available Tools

5 tools
fetchFetch stock technicalsB
Read-onlyIdempotent
Inspect

Fetch the full technical record for one stock by id, ticker, or company name. Returns a readable summary and structured metadata.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesTicker or company name, e.g. '005930' or 'SK Hynix'.
Behavior3/5

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

The annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, so the description does not need to restate these. The description adds that the tool returns a 'readable summary and structured metadata', which is reasonable context.

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

Conciseness5/5

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

Two concise sentences with no redundancy. The first sentence states the action and inputs; the second describes the output.

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

Completeness3/5

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

Without an output schema, the description could be more specific about what technicals are returned (e.g., indicators, timeframes). The term 'readable summary and structured metadata' is vague but acceptable for a simple 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?

The schema covers the single parameter 'id' with a description of acceptable formats. The description mentions 'by id, ticker, or company name' but adds no new details beyond the schema.

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

Purpose4/5

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

The description clearly states it fetches the full technical record for one stock using id, ticker, or company name. However, it does not distinguish from the sibling 'get_technical_analysis', which may have overlapping functionality.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives like 'screen_technicals' for multiple stocks or 'list_covered_stocks' for available symbols.

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

get_technical_analysisGet technical analysisA
Read-onlyIdempotent
Inspect

Technical levels for one or more covered stocks (KR/US/HK/CN/JP/TW/EU) from the precomputed cache: price, MA5/20/60/120, RSI14, Bollinger position, support/resistance, 52-week range, momentum, volatility, trend, and a 0-100 signal score. Accepts tickers or Korean/English company names.

ParametersJSON Schema
NameRequiredDescriptionDefault
tickersYesTickers or company names (KR/EN), up to 25.
Behavior4/5

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

Annotations already indicate read-only, idempotent, non-destructive. Description adds that data comes from a precomputed cache, implying speed and staleness. No contradictions.

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?

Single dense paragraph efficiently conveys purpose and output. Slightly verbose listing all indicators, but each is relevant.

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 no output schema, the description adequately lists return fields. Lacks error behavior (e.g., unknown tickers) but covers core functionality well.

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 coverage is 100% with parameter description matching. The description adds context about accepted formats (tickers or company names) and regions, but the schema already covers the input semantics.

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

Purpose4/5

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

The description clearly states it retrieves technical analysis for covered stocks and lists specific indicators. It distinguishes from siblings like list_covered_stocks (just lists stocks) and screen_technicals (scanning).

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 for fetching cached technical data but does not explicitly state when to use vs alternatives like screen_technicals or fetch. No exclusions or prerequisites mentioned.

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

list_covered_stocksList covered stocksA
Read-onlyIdempotent
Inspect

Browse the covered universe, optionally filtered by market, sector, or ticker/name. Results include the latest signal score and trend when available.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoDefault 50, max 200.
queryNo
marketNo
sectorNo
Behavior4/5

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

Annotations already indicate read-only, idempotent, non-destructive behavior. The description adds value by stating that results include signal score and trend when available, which is not in the schema or annotations. However, it does not mention pagination behavior or ordering, leaving some gaps.

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

Conciseness5/5

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

Two sentences with zero waste. Front-loaded with the main action and filters, then result description. Every word adds value.

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 listing tool with optional filters and no output schema, the description covers the essential use case. Minor gaps: does not explain ordering, pagination behavior beyond the limit parameter, or that query performs string matching. Overall adequate but not exhaustive.

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 low (25%). The description adds context by mapping 'query' to ticker/name filtering and listing market/sector options, but does not detail the limit parameter or clarify the ambiguity between 'query' and 'ticker/name'. Partially compensates for low schema coverage.

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 specifies the verb 'browse' and the resource 'covered universe' (covered stocks). It lists filter options (market, sector, ticker/name) and mentions result content (signal score and trend), effectively distinguishing it from sibling tools like search or fetch.

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 for browsing filtered lists but does not explicitly state when to use this tool versus siblings like screen_technicals or search. No exclusions or when-not-to-use guidance is provided.

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

screen_technicalsScreen by technicalsA
Read-onlyIdempotent
Inspect

Screen the covered universe by trend, signal score, RSI, market, and sector. Sort by 'below_high' or 'rsi_asc' for pullbacks/oversold stocks, or 'signal_desc'/'momentum_desc' for leaders.

ParametersJSON Schema
NameRequiredDescriptionDefault
sortNoDefault 'signal_desc'.
limitNoDefault 50, max 200.
trendNo
marketNo
sectorNo
rsi_aboveNo
rsi_belowNo
max_signal_scoreNo
min_signal_scoreNo
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds value by specifying the scope ('covered universe') and filtering dimensions, but does not contradict annotations.

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

Conciseness5/5

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

Two sentences with no wasted words: first sentence states purpose and filters, second gives specific sort examples. Front-loaded and efficient.

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

Completeness3/5

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

The description lacks details on output fields and does not explain all parameters (e.g., rsi_above, max_signal_score). Given the complexity (9 parameters, no output schema), more completeness would be helpful.

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

Parameters4/5

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

With low schema description coverage (22%), the description compensates by explaining the semantic purpose of sort options and mentioning key filter criteria (trend, RSI, market, sector). It adds meaning beyond the schema.

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 screens the covered universe by trend, signal score, RSI, market, and sector, with specific sort options for pullbacks or leaders. It differentiates from siblings like fetch and get_technical_analysis.

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?

The description provides use-case examples for sorting (pullbacks, oversold, leaders), implying when to use each sort. It does not explicitly compare to alternatives but gives enough context for typical usage.

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!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources