Back to catalog
LunarCrush Remote MCP Server
Provides current social metrics and posts for both real-time live social context and historical metrics in an LLM and token-optimized format, ideal for automated trading and financial advisory.
Get this MCP server
Provides current social metrics and posts for both real-time live social context and historical metrics in an LLM and token-optimized format, ideal for automated trading and financial advisory.
Configuration
Remote HTTP Streamable
{
"mcpServers": {
"LunarCrush": {
"type": "http",
"url": "https://lunarcrush.ai/mcp",
"headers": {
"Authorization": "Bearer ${input:lunarcrush-api-key}"
}
}
}
}
Remote SSE
{
"mcpServers": {
"LunarCrush": {
"type": "http",
"url": "https://lunarcrush.ai/sse",
"headers": {
"Authorization": "Bearer ${input:lunarcrush-api-key}"
}
}
}
}
Local stdio
{
"mcpServers": {
"LunarCrush": {
"command": "node",
"args": ["<absolute_path_to_project_root>/index.js"],
"env": {
"LUNARCRUSH_API_KEY": "<your_lunarcrush_api_key>"
}
}
}
}
Capabilities
- Fetch current social metrics and posts
- Access both real-time live social context and historical metrics
- LLM and token-optimized output
- Support for automated trading and financial advisory
Environment Variables
Required
LUNARCRUSH_API_KEY- API key for LunarCrush authentication
Notes
API keys can be obtained at https://lunarcrush.com/developers/api/authentication. More information about using LunarCrush AI and MCP capabilities is available at https://lunarcrush.com/developers/api/ai. The Remote HTTP server is the preferred method.
