ta-lib-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| TALIB_MCP_LOG_LEVEL | No | Log level for the TA-Lib MCP server | INFO |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| talib_list_indicatorsA | List TA-Lib indicators with optional group, category, and search filters. Returns indicator names with group and category metadata. Use the optional filters to narrow results by TA-Lib group, category, or keyword search. Args: group: Optional TA-Lib group filter (e.g., "Overlap Studies"). category: Optional category filter (e.g., "Trend", "Momentum"). search: Optional keyword search for indicator names. limit: Maximum number of indicators to return (1-1000). Returns: List of indicator summaries with name, group, and category. |
| talib_get_indicator_infoA | Get metadata for a specific TA-Lib indicator. Returns the indicator's group, category, display name, required inputs, outputs, default parameters, and lookback period. Args: indicator: TA-Lib indicator name (e.g., "SMA", "RSI", "MACD"). Returns: Indicator metadata with inputs, outputs, parameters, and lookback. |
| talib_compute_indicatorA | Compute a TA-Lib indicator from aligned numeric inputs. Computes the requested indicator over the provided numeric arrays and returns the result. All input arrays must have the same length. Args: indicator: TA-Lib indicator name (e.g., "SMA", "RSI", "MACD"). inputs: Aligned numeric input arrays (e.g., {"close": [1.0, 2.0, 3.0]}). parameters: Optional indicator parameters (e.g., {"timeperiod": 14}). Returns: Computation result with indicator name, length, parameters, and output values. |
| talib_list_categoriesA | List available indicator categories with descriptions. Returns all indicator categories (Trend, Momentum, Volume, etc.) with descriptions and example indicators for each category. Returns: List of category summaries with name, description, and examples. |
| talib_get_version_infoA | Return server, Python, and TA-Lib version information. Returns version information including the ta-lib-mcp server version, TA-Lib availability, and Python version. Returns: Version information dictionary. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose: computing an indicator, getting metadata, listing categories, listing indicators, and version info. There is no overlap or ambiguity.
All tool names follow a consistent 'talib_verb_noun' pattern in snake_case, making them predictable and easy to understand.
With 5 tools covering discovery, metadata, computation, and version info, the set is well-scoped and efficiently supports the TA-Lib domain.
The set provides complete coverage: you can discover indicators, get detailed info, and compute them. No obvious gaps for typical usage.