# DevDrops

DevDrops is a universal MCP server exposing multiple production data tools across finance, compliance, intelligence, and AI. Built on Cloudflare Workers with x402 micropayments — agents pay per call …

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add pchawla-a6su/devdrops

# Browse available tools
npx -y @smithery/cli@latest tool list pchawla-a6su/devdrops

# Get full schema for a tool
npx -y @smithery/cli@latest tool get pchawla-a6su/devdrops get_weather

# Call a tool
npx -y @smithery/cli@latest tool call pchawla-a6su/devdrops get_weather '{}'
```

## Direct MCP Connection

Endpoint: `https://devdrops.run.tools`

**Optional config:**
- `walletPrivateKey` (query) — Private key for a Base mainnet wallet holding USDC. Used for x402 micropayments ($0.01/tool call). Optional — discovery and tool listing are free without payment.
- `defaultCurrency` (query) — Default base currency for FX rate lookups (e.g. USD, EUR, GBP). Optional, defaults to USD.

## Tools (18)

- `get_weather` — Get current weather conditions or 5-day forecast for a city or coordinates
- `get_fx_rate` — Get currency exchange rates or convert between currencies (33 major currencies)
- `get_crypto_price` — Get live cryptocurrency price and market data (2000+ tokens)
- `get_stock_quote` — Get a live stock quote by ticker symbol (10,000+ tickers)
- `search_papers` — Search academic papers — titles, abstracts, citations, DOIs (OpenAlex, 250M+ papers)
- `search_filings` — Search SEC EDGAR filings full-text (10-K, 10-Q, 8-K)
- `get_company_filings` — Get recent SEC filings for a company by ticker
- `get_ip_info` — Get geolocation info for an IP address (country, city, ISP, coordinates)
- `analyze_sentiment` — AI-powered news sentiment analysis on any topic using Claude
- `get_odds` — Get sports betting odds from multiple bookmakers
- `search_food` — Search food nutrition data — calories, allergens, ingredients (3M+ products)
- `get_domain_info` — Get WHOIS, DNS records, SSL certificate info for a domain
- `verify_vat` — Verify an EU or UK VAT number via VIES and HMRC
- `check_sanctions` — Check a name against global sanctions lists (OFAC, UN Security Council, UK HMT)
- `get_history_today` — Get historical events that happened on today's date (Wikipedia)
- `generate_qr` — Generate a QR code from text or URL
- `research_topic` — AI research brief — synthesizes news, academic papers, and Wikipedia into a briefing
- `summarize_url` — Fetch and summarize any web page using AI

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get pchawla-a6su/devdrops <tool-name>
```
