io.github.OzorOwn/frostbyte
MCP server giving AI agents access to 40+ APIs: geo, crypto, screenshots, DNS, and more
Ask AI about io.github.OzorOwn/frostbyte
Powered by Claude Β· Grounded in docs
I know everything about io.github.OzorOwn/frostbyte. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
frostbyte-mcp
MCP server that gives AI agents access to 40+ developer APIs through one gateway. Works with Claude Desktop, Cursor, Windsurf, and any MCP-compatible client.
Tools
| Tool | Description |
|---|---|
geo_lookup | IP geolocation β country, city, coordinates, timezone, ISP |
crypto_price | Live cryptocurrency prices β BTC, ETH, SOL, and 40+ tokens |
dns_lookup | DNS records β A, AAAA, MX, TXT, NS, CNAME, SOA |
whois_lookup | Domain WHOIS/RDAP data β registrar, dates, nameservers |
take_screenshot | Website screenshots β PNG, multiple viewports, dark mode |
scrape_url | Web scraping β extract text, markdown, or HTML from any URL |
run_code | Code execution β JavaScript, Python, TypeScript, Bash |
search_web | Web search β structured results with titles and snippets |
shorten_url | URL shortener β custom slugs, expiration, click analytics |
generate_pdf | PDF generation β from HTML, URL, or Markdown |
create_paste | Pastebin β code sharing with syntax highlighting |
transform_data | Data conversion β JSON, CSV, XML, YAML, TSV, Markdown |
check_domain | Domain availability β check across multiple TLDs |
Quick Start
Remote Server (no install needed)
Connect directly via URL β works with Claude, ChatGPT, Cursor, VS Code, and any MCP client:
SSE endpoint: https://frostbyte-mcp.167.148.41.86.nip.io/sse
Streamable HTTP endpoint: https://frostbyte-mcp.167.148.41.86.nip.io/mcp
Claude Desktop / Claude.ai
Go to Settings > Connectors > Add Custom Connector:
- Name: Frostbyte
- URL:
https://frostbyte-mcp.167.148.41.86.nip.io/sse
Claude Code
claude mcp add --transport http "frostbyte" https://frostbyte-mcp.167.148.41.86.nip.io/sse
Cursor
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"frostbyte": {
"url": "https://frostbyte-mcp.167.148.41.86.nip.io/sse"
}
}
}
VS Code
Add to VS Code settings.json:
{
"mcp": {
"servers": {
"frostbyte": {
"type": "http",
"url": "https://frostbyte-mcp.167.148.41.86.nip.io/sse"
}
}
}
}
ChatGPT
Go to Settings > Connectors > Create:
- Name: Frostbyte
- URL:
https://frostbyte-mcp.167.148.41.86.nip.io/sse
Local Server (stdio)
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"frostbyte": {
"command": "node",
"args": ["/path/to/frostbyte-mcp/src/index.js"],
"env": {
"FROSTBYTE_API_KEY": "your-api-key"
}
}
}
}
Cursor / Windsurf
Add to your MCP settings:
{
"frostbyte": {
"command": "node",
"args": ["/path/to/frostbyte-mcp/src/index.js"],
"env": {
"FROSTBYTE_API_KEY": "your-api-key"
}
}
}
npx (no install)
{
"mcpServers": {
"frostbyte": {
"command": "npx",
"args": ["-y", "github:OzorOwn/frostbyte-mcp"],
"env": {
"FROSTBYTE_API_KEY": "your-api-key"
}
}
}
}
Get an API Key
# Free β 200 credits, no signup
curl -X POST https://agent-gateway-kappa.vercel.app/api/keys/create
Or omit FROSTBYTE_API_KEY β the server auto-creates a free key on startup.
Examples
Once connected, your AI agent can:
- "What's the geolocation of 1.1.1.1?" β calls
geo_lookup - "Take a screenshot of https://news.ycombinator.com" β calls
take_screenshot - "What's the current Bitcoin price?" β calls
crypto_price - "Run this Python code: print(sum(range(100)))" β calls
run_code - "Scrape the content from https://example.com" β calls
scrape_url - "Look up DNS records for github.com" β calls
dns_lookup - "Convert this CSV to JSON: name,age\nAlice,30\nBob,25" β calls
transform_data
Environment Variables
| Variable | Description | Default |
|---|---|---|
FROSTBYTE_API_KEY | API key for authentication | Auto-created (free tier) |
FROSTBYTE_BASE_URL | Gateway URL | https://agent-gateway-kappa.vercel.app |
Requirements
- Node.js 18+
- No other dependencies (just
@modelcontextprotocol/sdk)
Full API Documentation
The MCP server proxies to the Frostbyte API Gateway which provides 40+ services. For full API docs, see:
- API Catalog
- Getting Started Guide
- AI Agent Starter Kit β template repo with Python + Node.js examples
- JavaScript & Python SDK
- OpenAPI Spec
License
MIT
