Skip to main content
Glama
StelarDigital

Stelar Signals MCP

Official

Stelar Signals MCP

모든 MCP 호환 에이전트(Claude Code, Claude Desktop, Cursor, Windsurf, Codex …)에 실시간 암호화폐 시장 신호와 포트폴리오 텔레메트리를 제공하는 MCP(Model Context Protocol) 서버입니다.

여섯 개 도구는 x402를 통한 호출당 결제 방식입니다 — 가입도, 계정도, API 키도 필요 없습니다. 에이전트가 자체 지갑에서 Base의 USDC로 몇 센트를 결제하면, 같은 요청에서 데이터를 돌려받습니다.

설치

claude mcp add stelar -- npx -y stelar-signals-mcp

또는 모든 MCP 클라이언트 설정에서:

{
  "mcpServers": {
    "stelar": { "command": "npx", "args": ["-y", "stelar-signals-mcp"] }
  }
}

서버는 환경 변수 없이도 시작되어 모든 도구를 나열합니다.

Related MCP server: BlackSwan MCP Server

유료 도구 — x402, Base의 USDC, 키 불필요

Tool

Price

제공 내용

price

$0.005

현재 가격, 24시간 및 7일 변동, 상승/하락/중립 신호

sentiment

$0.005

텍스트 또는 자산에 대한 심리 점수(-1 ~ +1) 및 라벨

telemetry

$0.005

AI가 관리하는 암호화폐 포트폴리오의 실시간 텔레메트리 — 자산 배분, 조정된 P&L, 신호 투표, 인간 승인 기록

risk

$0.02

변동성/하락 위험 레짐 — ATR% 대 30일 p80 기준선, 낮음/중간/높음으로 라벨링

regime

$0.03

시장 레짐(횡보/상승 추세/하락 추세/고변동성) 및 그리드 트레이딩 적합성 판정

gridparams

$0.05

실시간 24시간 시장 구조 기반 그리드 수, 간격 %, 가격 밴드 및 그리드별 자산 배분

이 도구들은 https://api.stelardigital.com을 호출하며, 이 엔드포인트는 결제 챌린지와 함께 HTTP 402로 응답합니다. x402를 지원하는 모든 클라이언트는 이를 결제하고 자동으로 재시도합니다. 지원 자산: SOL, BTC, ETH, XRP, DOGE, LTC, ADA, XLM.

실제 시장 데이터를 기반으로 하는 라이브 프로덕션 엔드포인트입니다 — 데모 스텁이 아닙니다.

무료 티어 도구 — RapidAPI 키가 필요합니다

crypto_regime, crypto_sentiment, pricecheck, token_risk, summarize, factcheck는 RapidAPI를 통해 제공됩니다. 사용하려면 RAPIDAPI_KEY를 설정하세요:

claude mcp add stelar -e RAPIDAPI_KEY=your-key -- npx -y stelar-signals-mcp

키가 없으면 이 여섯 개는 명확한 오류를 반환합니다. 위의 여섯 개 유료 x402 도구는 계속 작동합니다. RapidAPI를 전혀 사용하지 않기 때문입니다.

검색

GET https://api.stelardigital.com/catalog          endpoints, prices, parameters
GET https://api.stelardigital.com/.well-known/x402 x402 discovery manifest
GET https://api.stelardigital.com/openapi.json     OpenAPI 3.1 spec

호스팅된 streamable-HTTP MCP 엔드포인트도 https://api.stelardigital.com/mcp에서 운영 중입니다.

솔직한 제한사항

  • 신호는 위에 나열된 8개 주요 자산만 다루며, 임의의 토큰은 다루지 않습니다.

  • 유료 도구는 자금이 입금된 지갑이 필요합니다. 없으면 데이터 대신 HTTP 402를 반환합니다.

  • 모든 응답에는 generated_at이 포함되며, 1분 이상 캐시되지 않습니다.

소개

Stelar Digital이 만들었습니다. 인간 한 명. AI 하나. 하나의 회사.

MIT 라이선스입니다.

Available Tools

6 tools
crypto_regimeCrypto market regime classifierAInspect

Market regime (chop / trend_up / trend_down / high_vol) for a major crypto pair, powered by the same classifier that steers a live production grid-trading bot. Returns a grid_suitability verdict (good/poor/etc) telling an agent whether current conditions favor range-bound (grid) strategies or trend-following ones. Use this before deciding to deploy a grid bot, mean-reversion strategy, or trend-follow strategy on SOL, XLM, BTC, ETH, XRP, DOGE, LTC, or ADA.

ParametersJSON Schema
NameRequiredDescriptionDefault
assetYesAsset symbol, one of: SOL, XLM, BTC, ETH, XRP, DOGE, LTC, ADA

TDQS

A4/5.0
Behavior3/5

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

No annotations provided, so the description carries full burden. It mentions the tool is powered by a live production bot and returns a verdict, but does not disclose read-only behavior, rate limits, or potential side effects. Missing explicit assurance of non-destructiveness.

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 primary purpose, and contains no fluff. Every sentence contributes value, including usage guidance and output description.

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 classifier with one parameter and no output schema, the description explains the output format (regime + verdict) and supported assets. It could elaborate on how the suitability verdict is determined, but overall it 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 input schema fully documents the single 'asset' parameter with an enum and description (100% coverage). The description adds no additional parameter-specific details beyond what the schema already provides, so baseline 3 is appropriate.

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 clearly states the tool's function: classifying market regime (chop/trend_up/trend_down/high_vol) for major crypto pairs, and returning a grid_suitability verdict. This distinguishes it from siblings like crypto_sentiment (sentiment analysis) and pricecheck (price data).

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?

The description explicitly advises use before deploying grid bots, mean-reversion, or trend-follow strategies on a specific set of assets (SOL, XLM, etc.). It does not mention when to avoid or compare to sibling tools like crypto_sentiment, but the context is clear.

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

crypto_sentimentCrypto / text sentiment scorerAInspect

Sentiment score (-1 to +1) with a bullish/neutral/bearish label, for either raw text or a crypto asset's recent price action, via an LLM. Give it EXACTLY ONE of text (free-form text to score) or asset (one of SOL, XLM, BTC, ETH, XRP, DOGE, LTC, ADA). Useful for agents building trading signals, news pipelines, or social-listening tools without running their own LLM sentiment call.

ParametersJSON Schema
NameRequiredDescriptionDefault
textNoFree text to score (omit if using `asset`)
assetNoAsset symbol to score sentiment for (omit if using `text`)

TDQS

A4.3/5.0
Behavior3/5

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

No annotations provided, so description bears full burden. It mentions using an LLM and returning a score and label, but does not disclose limitations, latency, error cases, or side effects. Could be more transparent.

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 plus a usage instruction. No wasted words, key information front-loaded. Very efficient.

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?

Given no output schema, the description mentions the return format. It is complete for a simple sentiment tool, covering inputs, outputs, and usage constraints. No gaps.

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%, baseline 3. The description adds clarity by explaining parameters and emphasizing mutual exclusivity ('EXACTLY ONE'), which goes beyond the schema.

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 clearly states it provides a sentiment score (-1 to +1) with a label, for either raw text or a crypto asset's recent price action. This distinguishes it from siblings like crypto_regime or factcheck.

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?

The description explicitly says to provide exactly one of `text` or `asset` and lists valid assets. It also mentions use cases (trading signals, news pipelines). However, it lacks explicit when-not-to-use or comparison with siblings.

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

factcheckFact-check a claimAInspect

Fact-check verdict (true / false / uncertain) with a confidence score (0-1) and a 1-2 sentence reasoning for any factual claim, via an LLM. Useful for content moderation, chatbot/agent guardrails, and misinformation screening. Returns 'uncertain' for opinions or claims requiring live/real-time data.

ParametersJSON Schema
NameRequiredDescriptionDefault
claimYesThe factual statement to verify

TDQS

A4.3/5.0
Behavior4/5

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

The description discloses key behavioral aspects: it uses an LLM, returns a verdict with confidence and reasoning, and handles edge cases (opinions, need for real-time data). Without annotations, the description adequately informs the agent of the tool's behavior and limitations.

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 extremely concise—two sentences that efficiently convey purpose, output, and usage boundaries. Every sentence adds unique value without redundancy.

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?

The description fully covers the tool's functionality: input (a claim), output (verdict, confidence, reasoning), and special cases (returns 'uncertain' for non-factual or real-time claims). No output schema exists, but the description compensates by detailing the return structure. For a simple tool with one parameter, this is complete.

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 single parameter 'claim' is described as 'The factual statement to verify' in both the schema and description. The description adds minimal extra semantic value beyond the schema, so a baseline score of 3 is appropriate given 100% schema coverage.

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 clearly states the tool's purpose: to return a verdict (true/false/uncertain), confidence score, and reasoning for a factual claim. It distinguishes itself from sibling tools (crypto_regime, crypto_sentiment, etc.) by focusing on general fact-checking rather than cryptocurrency-specific analysis.

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?

The description explicitly lists use cases: content moderation, guardrails, misinformation screening. It also notes when the tool returns 'uncertain' for opinions or claims needing live data. However, it does not mention when to avoid using it or suggest alternative tools.

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

pricecheckCrypto price + change snapshotAInspect

Current price, 24h and 7d percent change, and a simple bullish/bearish/neutral signal for a major crypto asset. Low-latency market-data lookup for dashboards, bots, and alerts — one of SOL, XLM, BTC, ETH, XRP, DOGE, LTC, ADA.

ParametersJSON Schema
NameRequiredDescriptionDefault
assetYesAsset symbol, one of: SOL, XLM, BTC, ETH, XRP, DOGE, LTC, ADA

TDQS

A3.9/5.0
Behavior2/5

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

No annotations provided. Description only mentions 'Low-latency' performance but does not disclose safety, destructive potential, or other behaviors. Burden is on description due to missing 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?

Two concise sentences: first describes output, second lists use cases and assets. No wasted words.

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?

No output schema, but description explains return values (price, changes, signal) and use cases. Single parameter is fully documented. All necessary context provided.

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?

Input schema has 100% description coverage for the single parameter (asset enum). Description lists assets again but adds no new meaning beyond schema.

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?

Clearly states it provides current price, 24h and 7d percent change, and a bullish/bearish/neutral signal for major crypto assets. Lists specific supported assets. Distinguishes from siblings like crypto_regime or crypto_sentiment.

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?

Explicitly mentions use cases: dashboards, bots, alerts. Lists supported assets but does not provide when-not-to-use or explicitly differentiate from sibling tools.

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

summarizeURL / text summarizerAInspect

Tight 3-5 sentence summary of a URL or a raw text block, via an LLM. Give it EXACTLY ONE of url (a page to fetch and summarize) or text (raw text to summarize directly). For agents/pipelines that need a fast, information-dense digest without running their own LLM call or web fetch.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoPage URL to fetch and summarize
textNoRaw text to summarize directly

TDQS

A4.4/5.0
Behavior4/5

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

No annotations provided, so description carries full burden. Discloses that it uses an LLM, fetches URL if provided, and outputs a 3-5 sentence summary. Lacks details on limits (e.g., text length, rate limits) but covers core behavior well.

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?

Two sentences with zero wasted words. First sentence defines purpose and output; second gives critical usage instruction. Perfectly concise.

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 only two parameters and no output schema, the description is largely complete. It explains what it does, how to use it, and what output to expect. Could mention error cases or size limits, but not essential for this simple tool.

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 already provides descriptions for both parameters. Description adds value by clarifying mutual exclusivity ('EXACTLY ONE') and that URL is fetched, which tells the agent how parameters interact.

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?

Clearly states the tool summarizes a URL or text via LLM, specifying output length (tight 3-5 sentences). Distinguishes from sibling tools which are in different domains (crypto, fact-checking, etc.), so purpose is unique.

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?

Explicitly instructs to provide exactly one of 'url' or 'text'. Provides context: 'For agents/pipelines that need a fast, information-dense digest without running their own LLM call or web fetch.' Does not explicitly mention when not to use, but context implies alternatives.

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

token_riskCrypto volatility / drawdown risk regimeAInspect

Volatility / drawdown risk regime (low / med / high) for a major crypto asset, extending the same classifier behind crypto_regime. Tells an agent whether current volatility is elevated vs its 30-day baseline — useful for position sizing and stop-placement logic. One of SOL, XLM, BTC, ETH, XRP, DOGE, LTC, ADA.

ParametersJSON Schema
NameRequiredDescriptionDefault
assetYesAsset symbol, one of: SOL, XLM, BTC, ETH, XRP, DOGE, LTC, ADA

TDQS

A4.3/5.0
Behavior4/5

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

No annotations are provided, so the description carries full burden. It explains the output (low/med/high regime), the basis (volatility vs 30-day baseline), and the applicability to major crypto assets. It adds context about the underlying classifier and the tool's non-destructive nature. Some limitations or edge cases could be added, but overall it provides good behavioral insight.

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 three sentences, concisely front-loading purpose, use case, and supported assets. No extraneous information; every sentence earns its place.

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 simple tool with one parameter and no output schema, the description explains the return value (low/med/high regime), the logic (volatility vs baseline), the supported assets, and a use case. It references the sibling tool for context, making it complete for an agent to decide whether to invoke it.

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 description coverage is 100%—the single 'asset' parameter is fully described with an enum. The description merely restates the supported assets ('One of SOL, XLM, BTC, ETH, XRP, DOGE, LTC, ADA'), adding no meaning beyond the schema. Baseline 3 is appropriate since the schema already handles semantics.

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 clearly states the tool returns a volatility/drawdown risk regime (low/med/high) for a major crypto asset, specifically comparing current volatility to a 30-day baseline. It distinguishes itself from the sibling crypto_regime tool by noting it extends the same classifier but focuses on volatility risk. The verb 'tells' and resource 'risk regime' are specific.

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?

The description provides clear context by stating the tool is 'useful for position sizing and stop-placement logic' and that it extends the classifier behind crypto_regime. This gives implicit guidance on when to use it vs. the sibling tool. However, it does not explicitly state when not to use it or provide exclusionary criteria.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 6 tool updatesv1.0.0
    • First observedcrypto_regime
    • First observedcrypto_sentiment
    • First observedfactcheck
    • First observedpricecheck
    • First observedsummarize
    • First observedtoken_risk

TDQS

A4.2/5.0
Disambiguation4/5

Most tools are distinct, but crypto_regime and token_risk both describe risk/regime for crypto assets, which could cause confusion despite different focuses (market vs. volatility). Other tools like pricecheck, sentiment, factcheck, and summarize are clearly separated.

Naming Consistency4/5

All names use snake_case and are descriptive, but there is a mix of single-word names (factcheck, pricecheck, summarize) and crypto-prefixed names (crypto_regime, crypto_sentiment, token_risk). No major inconsistencies, but not perfectly uniform.

Tool Count5/5

With 6 tools, the server is well-scoped for a crypto signals service. Each tool serves a clear purpose without being overwhelming or too sparse.

Completeness4/5

The set covers market regime, sentiment, price, risk, fact-checking, and summarization. Minor gaps exist (e.g., no on-chain data or advanced technical indicators), but the core signal needs are addressed. The inclusion of general-purpose tools (factcheck, summarize) is a slight deviation from the crypto focus.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Financial intelligence for AI agents. 31 tools across 8 data sources — regime, derivatives, stablecoin flows, momentum, volatility, macro, DeFi, weather patterns, political cycles, seasonality. The context layer between your agent and a bad trade.
    31
    19
    9
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables AI agents to access real-time crypto risk intelligence with two tools: Flare for precursor detection and Core for overall risk environment assessment.
    4
    -
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables AI agents to perform complex crypto operations like cross-chain routing, contract decoding, portfolio management, and anti-rug security checks, returning unsigned transactions for safe signing by the agent.
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI agents to access crypto prices, DeFi yields, Polymarket data, Base chain info, and security scans with pay-per-call via USDC on Base mainnet.
    MIT

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/StelarDigital/stelar-signals-mcp'

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