Metadata-Version: 2.4
Name: mcp-server-coindesk
Version: 0.1.0
Author-email: narumi <toucans-cutouts0f@icloud.com>
License-File: LICENSE
Requires-Python: >=3.12
Requires-Dist: beautifulsoup4>=4.13.3
Requires-Dist: feedparser>=6.0.11
Requires-Dist: loguru>=0.7.3
Requires-Dist: mcp[cli]>=1.6.0
Requires-Dist: python-dateutil>=2.9.0.post0
Description-Content-Type: text/markdown

# Coindesk MCP

```sh
uv run mcp dev src/coindesk_mcp/server.py
```

```json
{
  "mcpServers": {
    "mcp-server-coindesk": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/narumiruna/mcp-server-coindesk",
        "mcp-server-coindesk"
      ]
    }
  }
}
```

## Components

### Tools

- recent_news
  - Retrieve recent news articles from Coindesk RSS feed
  - Returns a list of articles with title, link, and description
- read_news
  - Read the news article from url
  - Input:
    - url: URL of the Coindesk article
  - Returns the article title, author, and content
