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.8/5 across 5 of 5 tools scored.

Server CoherenceA
Disambiguation3/5

fetch and get_technical_analysis overlap in retrieving technical data for a stock, though fetch provides a full record while get_technical_analysis is limited to cached levels. search, list_covered_stocks, and screen_technicals are more distinct but still share the browsing/screening space.

Naming Consistency3/5

The naming mixes short verbs (fetch, search) with longer verb_noun phrases (list_covered_stocks, screen_technicals) and a verb_adjective_noun (get_technical_analysis). The patterns are not consistent, but all names are readable and actions are inferable.

Tool Count5/5

With 5 tools, the server is well-scoped for a technical analysis domain. Each tool addresses a core need: retrieve, analyze, list, screen, and search, without excess or redundancy that would bloat the surface.

Completeness5/5

The domain is stock technical analysis, and the tool set covers the essential operations: fetching detailed records, accessing technical indicators, browsing the universe, screening, and searching. There are no obvious missing functions for read-only technical analysis.

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?

Annotations already indicate read-only, idempotent, and non-destructive behavior. The description adds useful context about the return format ('readable summary and structured metadata'), which goes beyond the annotations. However, it does not disclose potential error conditions, rate limits, or authentication requirements. With annotations covering safety, a score of 3 is appropriate.

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?

The description is a single sentence that efficiently conveys both the action and the output. It is front-loaded with the verb and resource, and every phrase adds value. No redundant or irrelevant content.

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 1-parameter read-only fetch tool without an output schema, the description adequately covers the purpose and return format. However, it does not clarify how this tool differs from the closely named sibling 'get_technical_analysis', which could cause selection ambiguity. More context on distinguishing factors would be helpful.

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 parameter description fully covers the parameter semantics (ticker or company name with examples). The tool description repeats this information without adding new details. Since schema coverage is 100%, the baseline is 3, and there is no extra value from the description.

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 the tool fetches the full technical record for one stock, with the resource being 'stock technicals' and the verb 'fetch'. It also specifies identification via ticker or company name. However, it does not distinguish itself from the sibling 'get_technical_analysis', which may overlap in 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?

The description provides no guidance on when to use this tool versus alternatives. It does not mention any exclusions, prerequisites, or comparisons to other tools such as 'screen_technicals' or 'search'. The only implied usage is that it is for a single stock, but no explicit when-to-use guidance is given.

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 convey read-only, idempotent, and non-destructive behavior. The description adds valuable context: data comes from a precomputed cache (potential staleness) and enumerates the exact output fields, which is helpful given no output schema. No contradiction with 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?

The description is two sentences long, front-loaded with the core purpose, and each detail (markets, cache, indicators, input flexibility) earns its place. No redundant or fluff content.

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 has one well-documented parameter and no output schema, the description adequately covers the input (tickers/names), market scope, data source (cache), and output contents (indicator list). It omits edge cases like partial failures, but for a simple getter, this is sufficient.

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 already documents the 'tickers' parameter fully (tickers or KR/EN comments, up to 25). The description repeats this and adds the list of supported markets, but that is supplementary context rather than new parameter syntax. Baseline of 3 is appropriate due to full schema coverage.

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 the tool's purpose: fetching precomputed technical levels for covered stocks, and it lists specific indicators (price, MAs, RSI, etc.). It distinguishes from siblings by focusing on data for given tickers, but does not explicitly contrast with screen_technicals or search.

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 retrieving technical data for specific covered stocks and mentions the precomputed cache, suggesting suitability for quick lookups. However, it does not explicitly say when to use this tool over screen_technicals or search, nor does it mention limitations like stale cache data.

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
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is clear. The description adds that results include the latest signal score and trend 'when available', which is useful. However, it doesn't disclose pagination behavior or the default limit, which could affect agent expectations.

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?

The description is two concise sentences that front-load the core purpose ('Browse the covered universe') and efficiently convey filters and output content. No unnecessary words or redundancy.

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 four optional parameters, no output schema, and annotations covering safety, the description provides sufficient context for a listing tool: it states filters and result fields. Minor gaps like limit default and pagination are not critical but would add completeness.

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?

The description explicitly maps filters to market, sector, and ticker/name, clarifying the purpose of query, market, and sector parameters. Schema coverage is low (25%), so this compensation is valuable. The 'limit' parameter is not described in the description but is already documented in 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 the tool browses the covered universe with optional filters, which matches the title 'List covered stocks'. It distinguishes from siblings like get_technical_analysis and screen_technicals by focusing on the universe listing with signal scores and trends, but does not explicitly name alternatives.

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 usage context is implied ('Browse the covered universe') but there is no explicit guidance on when to use this tool versus siblings like search or screen_technicals. It doesn't state exclusions or prerequisites, which would help an agent decide between tools.

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, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds context beyond annotations by specifying the universe is 'covered' and by explaining the intent of different sort values, which is useful behavioral information. It 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?

The description is two sentences, front-loaded with the action and resource, followed immediately by useful sort guidance. There is no filler or redundant information, earning its place efficiently.

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?

For a screening tool with 9 optional parameters and no output schema, the description covers the core purpose and sort strategies but omits details about how filters interact, the effect of the limit parameter, or what a result entry looks like. This is adequate for basic use but not fully complete for complex screening scenarios.

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?

With schema description coverage at only 22%, the description must compensate. It adds meaning to the sort parameter by explaining which sorts to use for pullbacks/oversold vs leaders, but it does not explain filter parameters like rsi_above, rsi_below, min_signal_score, or max_signal_score beyond their names. Partial compensation leaves gaps.

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 the tool screens the covered universe by trend, signal score, RSI, market, and sector, providing a specific verb and resource. However, it does not explicitly differentiate from sibling tools like get_technical_analysis or search, relying on the reader to infer that this is a screening rather than a lookup tool.

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 actionable guidance for sort values, mapping 'below_high'/'rsi_asc' to pullbacks/oversold stocks and 'signal_desc'/'momentum_desc' to leaders. This gives clear context for when to use particular sort options, though it does not explicitly state when to prefer this tool over siblings or mention exclusions.

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

  • A
    license
    -
    quality
    B
    maintenance
    Provides TradingView-style market analysis with OHLCV candles, 19 technical indicators, a screener, and a backtester using public Yahoo Finance data without API keys.
    MIT
  • F
    license
    -
    quality
    B
    maintenance
    Real-time Indian stock market sentiment intelligence. Provides NSE/BSE news sentiment, aggregated stock & sector signals, and technical analysis.
    1
  • F
    license
    A
    quality
    D
    maintenance
    Provides technical analysis for Korean and US stocks through natural language queries. Enables users to analyze stock charts, search for tickers, and access technical indicators like RSI and MACD within Claude Desktop and other MCP clients.
    8
  • A
    license
    -
    quality
    D
    maintenance
    Provides stock market data and technical indicators (RSI, Bollinger Bands, SMA, EMA) via AlphaVantage API.
    Apache 2.0

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources