Multi-language crypto news with editorial sentiment + importance scoring; cites original publisher.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"zipp": {
"url": "https://zippfeed.com/mcp/",
"type": "http"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Multi-language crypto news for AI assistants — editorial summaries, > sentiment labels (BULLISH / NEUTRAL / BEARISH), importance scores > (0–100), and every story credited to its original publisher.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol (MCP) server that provides AI assistants with direct access to the Spreedly payments API. Enables LLMs to manage gateways, process transactions, tokenize payment methods, and more, through structured, validated tool calls.
MCP server for InsightSentry financial data API - market data, options, screeners, and more
A Model Context Protocol server allows Clients to interact with Xero
MCP Security Weekly
Get CVE alerts and security updates for com.zippfeed/zipp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Multi-language crypto news for AI assistants — editorial summaries, sentiment labels (BULLISH / NEUTRAL / BEARISH), importance scores (0–100), and every story credited to its original publisher.
This repository hosts the public listing manifest and the
zipp-mcp Python package. The canonical Zipp MCP server is
hosted at https://zippfeed.com/mcp/ — most clients should connect
to that URL directly. The PyPI / Docker package is for the cases
where they can't: stdio-only desktop clients, locked-down networks,
or anywhere you want a self-contained install.
https://zippfeed.com/mcp/2025-06-18)uvx zipp-mcp · Docker: ghcr.io/deficlow/zipp-mcp (Day 3 follow-up)Three install paths. All three speak the same protocol and call the same upstream API; the right choice depends on the client.
uvx — no install, one commandFor stdio MCP clients (Claude Desktop, Cursor's stdio mode, Cline, Zed, etc.) that prefer launching a local subprocess:
uvx zipp-mcp
Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"zipp": {
"command": "uvx",
"args": ["zipp-mcp"]
}
}
}
pip install — for embedded usepip install zipp-mcp
zipp-mcp --transport stdio
Or import the client directly in your own code:
from zipp_mcp import ZippClient
async with ZippClient() as zipp:
payload = await zipp.search(query="bitcoin etf", lang="en-US", limit=5)
for item in payload["items"]:
print(item["title"], item["sentiment"], item["importance"])
docker run -i --rm ghcr.io/deficlow/zipp-mcp
For Streamable HTTP transport on a server (Railway, Fly, Render):
docker run -p 8080:8080 -e MCP_HOST=0.0.0.0 \
ghcr.io/deficlow/zipp-mcp \
zipp-mcp --transport http
All flags read from env vars too; everything is optional.
| Env var | Default | What it does |
|---|---|---|
ZIPP_API_BASE | https://zippfeed.com | Upstream Zipp deployment (staging, mirror, etc.) |
ZIPP_API_TIMEOUT_S | 30 | HTTP client timeout (1–120s) |
MCP_HOST | 127.0.0.1 | Bind host for HTTP/SSE transports (set 0.0.0.0 in containers) |
MCP_PORT | 8080 | Bind port; also aliased as PORT for Railway/Fly/Render/Heroku |
The package is read-only — there is nothing to authenticate; the upstream API is public and rate-limited at the Cloudflare edge.
Most news connectors are pure aggregators that hand the model a raw headline list. Zipp adds an editorial layer on top of the firehose:
| Signal | What it does |
|---|