# zipp

**Zipp** is a multi-language crypto news MCP server with an editorial layer on top of the firehose. Every story carries:

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y smithery mcp add deficlow/zipp

# Browse available tools
npx -y smithery tool list deficlow/zipp

# Get full schema for a tool
npx -y smithery tool get deficlow/zipp search

# Call a tool
npx -y smithery tool call deficlow/zipp search '{}'
```

## Direct MCP Connection

Endpoint: `https://zipp--deficlow.run.tools`

## Tools (6)

- `search` — Full-text search across Zipp's news catalogue. Returns recent matching stories ordered by recency (with relevance as a …
- `get_latest` — Latest news from the last 24 hours. Optionally scoped to a category. Returns posts ordered newest-first. Use for 'what'…
- `get_breaking` — Breaking news only — last 24 hours, importance score ≥ 75. Lower volume than get_latest but every item is market-moving…
- `get_featured` — Editor-picked feature stories (is_featured=TRUE). No time window. Use when the user wants curated highlights rather tha…
- `get_post` — Full detail of a single post — title, summary, full body, all categories, hashtags, source attribution. Accepts either …
- `list_categories` — List the full Zipp taxonomy (7 main groups × 5 leaves = 35 categories total). Use to discover valid category slugs for …

```bash
# Get full input/output schema for a tool
npx -y smithery tool get deficlow/zipp <tool-name>
```
