by lunarcrush
Provides a stdio transport proxy for the remote LunarCrush MCP Server, enabling AI‑driven insights and data streams for cryptocurrencies, stocks, and social‑media metrics.
Lunarcrush Mcp Server acts as a local proxy that forwards Model Context Protocol (MCP) requests to the official LunarCrush MCP endpoint. It offers a convenient stdio‑based transport, allowing developers to integrate LunarCrush AI capabilities into custom applications without dealing directly with HTTP or SSE connections.
npm install
).index.js
entry point, or configure it as an MCP server in your application by referencing the provided JSON snippets (HTTP, SSE, or stdio).LUNARCRUSH_API_KEY
.https://lunarcrush.ai/mcp
or https://lunarcrush.ai/sse
.Q: Do I need to run a separate HTTP server? A: No. The stdio mode runs as a local process and communicates via standard input/output streams.
Q: Which authentication method is required?
A: Provide your LunarCrush API key as the LUNARCRUSH_API_KEY
environment variable or via the Authorization: Bearer <key>
header in HTTP/SSE configurations.
Q: Can I switch between HTTP and SSE easily?
A: Yes. Just replace the type
and url
fields in the MCP configuration JSON to point to either the HTTP or SSE endpoint.
Q: Is the server compatible with other MCP clients? A: Absolutely. It follows the standard MCP specification, so any client that supports MCP can connect.
More information on using LunarCrush AI & MCP Capabilities here: https://lunarcrush.com/developers/api/ai
Streamable HTTP
{
"mcpServers": {
"LunarCrush": {
"type": "http",
"url": "https://lunarcrush.ai/mcp",
"headers": {
"Authorization": "Bearer ${input:lunarcrush-api-key}"
}
}
}
}
SSE
{
"mcpServers": {
"LunarCrush": {
"type": "http",
"url": "https://lunarcrush.ai/sse",
"headers": {
"Authorization": "Bearer ${input:lunarcrush-api-key}"
}
}
}
}
{
"mcpServers": {
"LunarCrush": {
"command": "node",
"args": ["<absolute_path_to_project_root>/index.js"],
"env": {
"LUNARCRUSH_API_KEY": "<your_lunarcrush_api_key>",
}
}
}
}
Get your LunarCrush API keys here: https://lunarcrush.com/developers/api/authentication
Please log in to share your review and rating for this MCP.
{ "mcpServers": { "LunarCrush": { "type": "http", "url": "https://lunarcrush.ai/mcp", "headers": { "Authorization": "Bearer ${input:lunarcrush-api-key}" } } } }
Explore related MCPs that share similar capabilities and solve comparable challenges
by lharries
Enables searching, reading, and sending personal WhatsApp messages and media through a Model Context Protocol (MCP) server, storing all data locally in SQLite and exposing controlled tools for LLMs like Claude.
by iFurySt
Provides authenticated access to XiaoHongShu (RedNote) notes, supporting keyword search, note retrieval by URL, and cookie persistence via a Model Context Protocol server.
by korotovsky
Provides a powerful Model Context Protocol interface for Slack workspaces, enabling message retrieval, search, and optional posting via Stdio or SSE transports without requiring bot permissions.
by ZubeidHendricks
Provides a standardized interface for interacting with YouTube content, enabling video retrieval, transcript access, channel and playlist management, and advanced analytics through the Model Context Protocol.
by InditexTech
Provides Microsoft Teams integration via the Model Context Protocol, enabling reading, creating, replying to messages and mentioning members.
by chigwell
Provides a full‑featured Telegram integration for MCP‑compatible clients, enabling programmatic access to chats, messages, contacts, profile management, and group administration.
by EnesCinr
Interact with Twitter to post tweets and search tweets programmatically via an MCP server.
by chaindead
Manages Telegram dialogs, messages, drafts, and read statuses via the Model Context Protocol, enabling AI assistants to query and interact with Telegram accounts.
by carterlasalle
Securely interfaces with the macOS Messages database via MCP, enabling LLMs to query, analyze, filter, and send iMessage or SMS communications with built‑in phone number validation, attachment handling, and group chat support.