technical
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.
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.
Tool Definition Quality
Average 3.9/5 across 5 of 5 tools scored. Lowest: 3.3/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.
All tools use consistent snake_case naming with action-oriented verbs (fetch, get_, list_, screen_, search). No mixing of conventions.
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.
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 toolsfetchFetch stock technicalsBRead-onlyIdempotentInspect
Fetch the full technical record for one stock by id, ticker, or company name. Returns a readable summary and structured metadata.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Ticker or company name, e.g. '005930' or 'SK Hynix'. |
Tool Definition Quality
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.
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.
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.
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.
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.
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 analysisARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| tickers | Yes | Tickers or company names (KR/EN), up to 25. |
Tool Definition Quality
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.
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.
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.
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.
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.
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 stocksARead-onlyIdempotentInspect
Browse the covered universe, optionally filtered by market, sector, or ticker/name. Results include the latest signal score and trend when available.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Default 50, max 200. | |
| query | No | ||
| market | No | ||
| sector | No |
Tool Definition Quality
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.
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.
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.
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.
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.
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 technicalsARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Default 'signal_desc'. | |
| limit | No | Default 50, max 200. | |
| trend | No | ||
| market | No | ||
| sector | No | ||
| rsi_above | No | ||
| rsi_below | No | ||
| max_signal_score | No | ||
| min_signal_score | No |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
searchSearch stocksARead-onlyIdempotentInspect
Search the covered stock universe by company name or ticker (KR/EN). Returns ids, titles, URLs, and short technical snippets. Pair with fetch for a full record.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Default 20, max 50. | |
| query | Yes | Company name or ticker substring (KR/EN). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint, idempotentHint, destructiveHint. Description adds return content details (ids, titles, etc.) but does not discuss rate limits, authentication, or other behavioral aspects beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences plus an imperative. Efficiently front-loads purpose and output, no redundant words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Adequately covers input (query, limit), output (ids, titles, URLs, snippets), and a related tool (fetch). Lacks mention of sorting or pagination beyond limit, but overall sufficient for a search tool with strong annotations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so baseline is 3. Description restates schema info (search by name/ticker, limit default/max) without adding new meaning or examples.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the verb ('search'), resource ('covered stock universe'), and search criteria ('company name or ticker'). It also specifies the output fields and distinguishes from sibling 'fetch' which gets a full record.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides clear context: search by name/ticker, return snippets. Suggests pairing with 'fetch' for full record, giving a follow-up action. However, lacks explicit exclusions or comparisons to other siblings like 'screen_technicals'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!