echo-sentiment-mcp
Provides real-time XLM (Stellar) market sentiment as a tool, computed from Stellar SDEX order-flow imbalance, Crypto Fear & Greed Index, and 24h price momentum, enabling sentiment analysis for Stellar's XLM token.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@echo-sentiment-mcpWhat's the current XLM market sentiment?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Echo Sentiment — MCP Server (XLM Market Sentiment)
A Model Context Protocol (MCP) server that exposes real-time XLM (Stellar) market sentiment as a tool, computed from a keyless composite:
Crypto Fear & Greed Index (public API, no key)
Stellar SDEX order-flow imbalance (public order book)
24h price momentum (CoinGecko public API)
No LLM in the loop, no API keys, no paid data feeds. Rules + math only.
Listed on
Hosted endpoint:
https://api.6766587364.lol/mcp(no install — point any MCP client at it)Machine-readable docs:
/llms.txt·/openapi.json
Related MCP server: Web3 Signals — Crypto Signal Intelligence
Hosted endpoint (pay-per-call via x402)
Prefer using it rather than self-hosting? The same tool runs live at:
https://api.6766587364.lol/mcpThe full REST API behind it also offers /v1/sentiment, /v1/quote,
/v1/arb-opportunities, /v1/multi-asset and a premium
/v1/sentiment-report, all pay-per-call in USDC on Base via the
x402 protocol (HTTP 402 → sign an EIP-3009 permit →
retry → 200). See /llms.txt
for the machine-readable summary.
Install
Requires Python 3.11+. Clone this repo, then:
pip install -r requirements.txtUsage
This repo ships the MCP server (mcp_bridge.py). Run it locally:
python mcp_bridge.py # serves streamable HTTP MCP on 127.0.0.1:8010/mcpConnect any MCP client (Claude Desktop, Cursor, custom agents) to
http://127.0.0.1:8010/mcp (or run it behind your own HTTPS).
Prefer not to self-host? The same tool runs live (no install) at
https://api.6766587364.lol/mcp — see Hosted endpoint.
Example (call the tool)
import asyncio, json
from mcp import ClientSession, StdioServerParameters
from mcp.client.stdio import stdio_client
async def main():
params = StdioServerParameters(command="python", args=["mcp_bridge.py"])
async with stdio_client(params) as (r, w):
async with ClientSession(r, w) as s:
await s.initialize()
res = await s.call_tool("get_xlm_sentiment", {})
print(json.loads(res.content[0].text))
asyncio.run(main())(Or point your client at the hosted https://api.6766587364.lol/mcp — no local process needed.)
Configuration
All optional, via environment variables:
Var | Default | Meaning |
|
| Base RPC for on-chain reads (informational). |
|
| Weight of the Fear & Greed component. |
|
| Weight of the SDEX order-flow imbalance component. |
|
| Weight of the 24h price momentum component. |
Weights must sum to ~1.0. The composite is keyless and needs no API keys.
Tool
get_xlm_sentiment → JSON string:
{
"sentiment": -0.45,
"sentiment_source": "FNG(30)+flow(-0.75)+mom(+0.39%)",
"components": {"FNG(30)": -0.4, "flow(-0.75)": -0.75, "mom(+0.39%)": 0.078},
"price_usd": 0.1619,
"mid": 0.1620,
"spread_pct": 0.09,
"ts": 1786158508.1
}sentiment is in [-1, 1]: positive = bullish, negative = bearish.
Hosted endpoint (pay-per-call via x402)
Prefer using it rather than self-hosting? The same tool runs live at:
https://api.6766587364.lol/mcpThe full REST API behind it also offers /v1/sentiment, /v1/quote,
/v1/arb-opportunities, /v1/multi-asset and a premium
/v1/sentiment-report, all pay-per-call in USDC on Base via the
x402 protocol (HTTP 402 → sign an EIP-3009 permit →
retry → 200). See /llms.txt
for the machine-readable summary.
Agent-wallet ready
Agents that hold a wallet (e.g. MetaMask Agent
Wallet, GA Aug 2026) can pay per call with zero API keys — payment is the
auth, via the x402 protocol. Works with MetaMask's official
mcp-x402 header generator —
verified end-to-end on Base mainnet (Aug 8 2026): the raw V1 header their
server signs is accepted directly by this API via a server-side V1→V2
shim (no client-side remapping needed; settlement tx on-chain).
Why
Rules-based: deterministic scores, no model drift, cheap to run.
Keyless: nothing to sign up for, nothing to leak.
Composite: three independent signals weighted 0.3/0.4/0.3 (configurable via
SENTIMENT_WEIGHT_*env vars).
License
MIT — see LICENSE.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Related MCP Connectors
XLM (Stellar) market sentiment for agents — keyless, pay-per-call via x402 (USDC on Base).
XRPL token rug-checks, issuer reputation & AMM data for AI agents. Pay-per-call USDC via x402.
Crypto market signals and portfolio telemetry. 6 tools pay-per-call in USDC, no API key.
Crypto market signals, technical indicators, and sentiment analysis for AI agents.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides access to Sentiment402 market sentiment data for global markets, crypto, TradFi, and specific assets, with built-in support for x402 micropayment protocol when API responses require payment.MIT
- AlicenseNot gradedqualityCmaintenanceAI-powered crypto signal intelligence for 20 assets (BTC, ETH, SOL, etc). 6 scoring dimensions: whale activity, technical analysis, derivatives flow, narrative strength, sentiment, market structure. Market regime detection (TRENDING/RANGING), portfolio optimization, and accuracy tracking. 9 read-only MCP tools. Free via MCP, $0.001 USDC via x402 on Base for REST API.3MIT
- AlicenseAqualityAmaintenanceAgentPay — x402 crypto data gateway on Stellar. 10 live pay-per-call tools: token prices, whale activity, gas tracker, DeFi TVL, Fear & Greed, Dune queries, token security. Agents pay USDC on Stellar. No API keys. Budget-aware sessions.203MIT
- AlicenseAqualityCmaintenanceLive market data for AI agents. 8 tools: real-time crypto prices, OHLCV candles, order books, market cap rankings, trending coins, technical analysis (RSI/SMA/z-score), asset comparison, and Fear & Greed index. Zero API keys, zero dependencies.81MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/MikeDorian375/echo-sentiment-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server