Simsar MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Capabilities
Features and capabilities supported by this server
| 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 |
|---|---|
| get_priceB | Get the current price of a cryptocurrency. Args: symbol: Trading pair symbol (e.g., BTCUSDT, ETHUSDT) Returns: Current price information |
| get_candlesB | Get OHLCV candlestick data for a cryptocurrency. Args: symbol: Trading pair symbol (e.g., BTCUSDT, ETHUSDT) interval: Candle interval - 1m, 5m, 15m, 30m, 1h, 4h, 1d, 1w limit: Number of candles to return (1-100, default 20) start_time: Start time in ISO format (e.g., 2024-01-01 or 2024-01-01T00:00:00) end_time: End time in ISO format (e.g., 2024-01-15 or 2024-01-15T00:00:00) Returns: Candlestick data with open, high, low, close, volume |
| get_smaC | Simple Moving Average - smooths price data to identify trend direction. |
| get_emaC | Exponential Moving Average - more weight to recent prices, faster response than SMA. |
| get_wmaB | Weighted Moving Average - linearly weighted, emphasizes recent prices. |
| get_demaC | Double Exponential Moving Average - reduces lag of traditional EMA. |
| get_temaC | Triple Exponential Moving Average - even less lag than DEMA. |
| get_kamaC | Kaufman Adaptive Moving Average - adapts to market volatility. |
| get_t3C | T3 Moving Average - very smooth with minimal lag. |
| get_trimaC | Triangular Moving Average - double-smoothed SMA. |
| get_momC | Momentum - measures price change over period. Positive=uptrend, negative=downtrend. |
| get_rocC | Rate of Change - percentage price change over period. |
| get_cmoD | Chande Momentum Oscillator - oscillates between -100 and +100. |
| get_cciC | Commodity Channel Index - measures price deviation. >100 overbought, <-100 oversold. |
| get_willrC | Williams %R - momentum oscillator. >-20 overbought, <-80 oversold. |
| get_ultoscC | Ultimate Oscillator - combines short, medium, long-term momentum. |
| get_trixC | TRIX - triple-smoothed EMA rate of change. Filters noise, shows momentum. |
| get_ppoD | Percentage Price Oscillator - similar to MACD but as percentage. |
| get_apoD | Absolute Price Oscillator - difference between fast and slow EMA. |
| get_dxC | Directional Movement Index - measures trend strength. |
| get_plus_diC | Plus Directional Indicator - measures upward trend strength. |
| get_minus_diC | Minus Directional Indicator - measures downward trend strength. |
| get_adxrC | Average Directional Movement Index Rating - smoothed ADX. |
| get_obvD | On Balance Volume - cumulative volume, confirms price trends. |
| get_mfiB | Money Flow Index - volume-weighted RSI. >80 overbought, <20 oversold. |
| get_adC | Accumulation/Distribution Line - measures money flow into/out of asset. |
| get_adoscC | Chaikin A/D Oscillator - momentum of A/D line. |
| get_natrC | Normalized Average True Range - ATR as percentage of close price. |
| get_trangeC | True Range - max of (high-low, |high-prevclose|, |low-prevclose|). |
| get_sarC | Parabolic SAR - trailing stop and trend indicator. Price above SAR=bullish. |
| get_bopC | Balance of Power - measures buying vs selling pressure. Range -1 to +1. |
| get_aroonC | Aroon - identifies trend and trend strength. AroonUp>AroonDown=bullish. |
| get_aroonoscC | Aroon Oscillator - difference between AroonUp and AroonDown. >0 bullish. |
| get_stochrsiC | Stochastic RSI - applies stochastic to RSI. More sensitive than RSI. |
| get_rsiA | Get RSI (Relative Strength Index) for a cryptocurrency. RSI measures momentum on a scale of 0-100:
Args: symbol: Trading pair symbol (e.g., BTCUSDT, ETHUSDT) interval: Candle interval - 1m, 5m, 15m, 30m, 1h, 4h, 1d period: RSI calculation period (default 14) limit: Number of values to return (default 10) start_time: Start time in ISO format (e.g., 2024-01-01) end_time: End time in ISO format (e.g., 2024-02-01) Returns: RSI values with interpretation |
| get_macdA | Get MACD (Moving Average Convergence Divergence) for a cryptocurrency. MACD shows trend direction and momentum:
Args: symbol: Trading pair symbol (e.g., BTCUSDT, ETHUSDT) interval: Candle interval - 1m, 5m, 15m, 30m, 1h, 4h, 1d fast: Fast EMA period (default 12) slow: Slow EMA period (default 26) signal: Signal line period (default 9) limit: Number of values to return (default 10) start_time: Start time in ISO format (e.g., 2024-01-01) end_time: End time in ISO format (e.g., 2024-02-01) Returns: MACD values with trend interpretation |
| get_bollinger_bandsA | Get Bollinger Bands for a cryptocurrency. Bollinger Bands show volatility and potential reversal points:
Args: symbol: Trading pair symbol (e.g., BTCUSDT, ETHUSDT) interval: Candle interval - 1m, 5m, 15m, 30m, 1h, 4h, 1d period: SMA period (default 20) std_dev: Standard deviation multiplier (default 2.0) limit: Number of values to return (default 10) start_time: Start time in ISO format (e.g., 2024-01-01) end_time: End time in ISO format (e.g., 2024-02-01) Returns: Bollinger Bands with %B position indicator |
| get_stochasticA | Get Stochastic Oscillator for a cryptocurrency. Stochastic measures momentum on a scale of 0-100:
Args: symbol: Trading pair symbol (e.g., BTCUSDT, ETHUSDT) interval: Candle interval - 1m, 5m, 15m, 30m, 1h, 4h, 1d fastk_period: Fast %K period (default 14) slowk_period: Slow %K period (default 3) limit: Number of values to return (default 10) start_time: Start time in ISO format (e.g., 2024-01-01) end_time: End time in ISO format (e.g., 2024-02-01) Returns: Stochastic values with interpretation |
| get_adxA | Get ADX (Average Directional Index) for a cryptocurrency. ADX measures trend strength (not direction) on a scale of 0-100:
Args: symbol: Trading pair symbol (e.g., BTCUSDT, ETHUSDT) interval: Candle interval - 1m, 5m, 15m, 30m, 1h, 4h, 1d period: ADX period (default 14) limit: Number of values to return (default 10) start_time: Start time in ISO format (e.g., 2024-01-01) end_time: End time in ISO format (e.g., 2024-02-01) Returns: ADX values with trend strength interpretation |
| get_atrA | Get ATR (Average True Range) for a cryptocurrency. ATR measures volatility - higher values mean more volatility. Useful for setting stop-losses and position sizing. Args: symbol: Trading pair symbol (e.g., BTCUSDT, ETHUSDT) interval: Candle interval - 1m, 5m, 15m, 30m, 1h, 4h, 1d period: ATR period (default 14) limit: Number of values to return (default 10) start_time: Start time in ISO format (e.g., 2024-01-01) end_time: End time in ISO format (e.g., 2024-02-01) Returns: ATR values showing volatility |
| get_economic_calendarA | Get upcoming high-impact economic events. These events move markets significantly:
Args: days: Number of days to look ahead (default 7) event_type: Filter by type - FOMC, CPI, or NFP (optional) Returns: List of upcoming economic events with dates and times |
| get_next_eventsA | Get the next upcoming economic events. Quick way to see what's coming up that could move markets. Args: limit: Number of events to return (default 5) Returns: Next upcoming economic events |
| get_newsA | Get latest market news. Use this to understand what's happening in the markets right now. News can explain price movements and help predict future trends. Args: category: News category - general, forex, crypto, merger limit: Number of news items to return (default 10) Returns: Latest news headlines with sources and links |
| get_fear_greedA | Get Crypto Fear & Greed Index. Measures overall market sentiment. Useful for timing entries/exits.
Returns: Current Fear & Greed Index value and classification |
| get_funding_ratesA | Get funding rates from Binance Futures. Funding rates show long/short sentiment in the derivatives market:
Args: symbols: Comma-separated trading pair symbols (e.g., BTCUSDT,ETHUSDT,SOLUSDT) Returns: Current funding rates for the requested symbols |
| get_open_interestA | Get open interest for a futures symbol. Open interest = total outstanding contracts. Shows market participation. Rising OI + rising price = strong bullish trend Rising OI + falling price = strong bearish trend Falling OI = trend weakening, positions closing Args: symbol: Trading pair symbol (e.g., BTCUSDT, ETHUSDT) Returns: Open interest in contracts and USD value |
| get_long_short_ratioA | Get long/short account ratio for a futures symbol. Shows percentage of accounts that are long vs short. Ratio > 1: More accounts are long (bullish sentiment) Ratio < 1: More accounts are short (bearish sentiment) Extreme ratios often precede reversals (contrarian signal). Args: symbol: Trading pair symbol (e.g., BTCUSDT, ETHUSDT) Returns: Long/short ratio and percentages |
| get_top_trader_ratioA | Get top trader long/short ratio. Shows what the top traders (whales) are doing. More reliable signal than overall ratio - follow the smart money. Args: symbol: Trading pair symbol (e.g., BTCUSDT, ETHUSDT) Returns: Top trader long/short ratio and percentages |
| get_index_quoteA | Get current quote for a stock index (US30, SPX, NASDAQ). Use this to check traditional market conditions and their potential impact on crypto. BTC often correlates with US stock indices. Supported symbols:
Args: symbol: Index symbol (e.g., US30, SPX, NASDAQ) Returns: Current index price with daily change percentage |
| get_index_candlesA | Get OHLCV candles for a stock index. Supported symbols: US30 (Dow Jones), SPX (S&P 500), NASDAQ Args: symbol: Index symbol (e.g., US30, SPX, NASDAQ) interval: Candle interval - 1d, 1wk, 1mo range: Date range - 5d, 1mo, 3mo, 6mo, 1y Returns: OHLCV candlestick data for the index |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/miratcan/simsar-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server