Skip to main content
Glama
sablier-ai

Sablier MCP Server

Official
by sablier-ai

add_features_batch

Destructive

Batch-add up to 2000 tickers to the catalog in one parallel call, returning added, already-existed, and failure details to build a research universe quickly.

Instructions

Batch-add multiple tickers to the catalog in one call. Parallel ingest with a 10-wide semaphore — much faster than looping add_feature from the model side, and avoids the per-call tool-use overhead.

Returns a three-bucket breakdown: • added: tickers newly inserted (catalog + training_data populated) • already_existed: tickers that were already in the catalog (409s from the single-add path; not a failure) • failed: [{ticker, reason}] for symbols yfinance/FRED rejected

Use this when you want to register a research universe in the catalog without committing to a portfolio — e.g. 'add the S&P 500 constituents' or 'add these 200 tickers from my CSV'. For portfolio-bound bulk imports prefer create_portfolio with auto_add=true — same parallel ingest, but the result also creates the portfolio in one round-trip.

Per-ticker taxonomy fields (category, sector, asset_type, region) apply uniformly to every ticker in the batch. For heterogeneous batches leave them unset so each ticker gets its own auto-detected taxonomy from yfinance.

Typical wall-time: 100 tickers ≈ 10-30s, 1000 tickers ≈ 2-5 min.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
regionNoOptional. Valid values: 'US', 'Europe', 'Global', 'Asia', 'EM', 'Japan', 'China', 'Brazil', 'India', 'Korea', 'Taiwan', 'Vietnam', 'Latin America', 'Australia'.
sectorNoRequired when is_asset=true. Valid values: 'Technology', 'Healthcare', 'Financials', 'Consumer Discretionary', 'Consumer Staples', 'Industrials', 'Energy', 'Materials', 'Communication Services', 'Utilities', 'Real Estate', 'Fixed Income', 'FX', 'Commodities', 'Cryptocurrency', 'Alternatives', 'Broad Market', 'International Equity', 'Factor'.
sourceNoApplied uniformly. 'yahoo' for stocks/ETFs/futures, 'fred' for rates/economic.yahoo
tickersYesTicker symbols to add (e.g. ['AAPL', 'MSFT', 'NVDA', ...]). Up to 2000 per call.
categoryNoRequired when is_asset=true. Same enum as add_feature: 'equity', 'fixed_income', 'credit', 'rates', 'fx', 'commodity', 'volatility', 'economic', 'crypto', 'inflation', 'employment', 'growth', 'corporate', 'thematic', 'sector', 'region'.
is_assetNoLeave unset for yfinance auto-detection (recommended for heterogeneous batches). Pass True/False only to override for every ticker in the batch.
asset_typeNoRequired when is_asset=true. Valid values: 'Stock', 'ETF', 'Bond ETF', 'Crypto', 'Commodity', 'Currency ETF', 'Futures'.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior4/5

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

Annotations include destructiveHint and openWorldHint, but the description adds significant behavioral context: parallel ingest with a 10-wide semaphore, the three-bucket return breakdown, the fact that 'already_existed' is not a failure, uniform versus auto-detected taxonomy behavior, and expected wall-time for typical batch sizes. It does not explain what 'destructive' means in this context, but the added detail exceeds annotation coverage.

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 well-structured with a lead sentence, a bulleted return breakdown, a usage paragraph, a taxonomy note, and a performance estimate. Every sentence provides actionable information; no filler or redundancy. The format is scannable and front-loaded with the core purpose.

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

Completeness5/5

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

For a tool with 7 parameters, an output schema, and annotations, the description is exceptionally complete. It explains return bucket semantics, addresses the single-add sibling, provides performance expectations, and clarifies parameter behavior in batch context. The presence of an output schema does not leave gaps because the description enriches its meaning.

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?

Schema coverage is 100% with good per-parameter descriptions. The description adds valuable semantics beyond the schema: taxonomy fields 'apply uniformly to every ticker in the batch,' heterogeneous batches should leave them unset for auto-detection, and `source` is 'applied uniformly.' It also clarifies `is_asset` override behavior, complementing the schema's static descriptions.

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-resource pair: 'Batch-add multiple tickers to the catalog in one call.' It clearly distinguishes from the sibling `add_feature` by highlighting batch efficiency and from `create_portfolio` by noting the portfolio-bound alternative. The scope (multiple tickers, one call) is explicit.

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

Usage Guidelines5/5

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

The description provides explicit usage guidance: 'Use this when you want to register a research universe in the catalog without committing to a portfolio' and contrasts with 'For portfolio-bound bulk imports prefer create_portfolio with auto_add=true.' It also advises when to leave taxonomy fields unset for heterogeneous batches, offering clear when-to-use vs. when-not-to-use guidance.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/sablier-ai/sablier-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server