Frostbyte MCP
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 |
| IP geolocation — country, city, coordinates, timezone, ISP |
| Live cryptocurrency prices — BTC, ETH, SOL, and 40+ tokens |
| DNS records — A, AAAA, MX, TXT, NS, CNAME, SOA |
| Domain WHOIS/RDAP data — registrar, dates, nameservers |
| Website screenshots — PNG, multiple viewports, dark mode |
| Web scraping — extract text, markdown, or HTML from any URL |
| Code execution — JavaScript, Python, TypeScript, Bash |
| Web search — structured results with titles and snippets |
| URL shortener — custom slugs, expiration, click analytics |
| PDF generation — from HTML, URL, or Markdown |
| Pastebin — code sharing with syntax highlighting |
| Data conversion — JSON, CSV, XML, YAML, TSV, Markdown |
| 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/sseCursor
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/createOr 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 |
| API key for authentication | Auto-created (free tier) |
| Gateway URL |
|
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:
AI Agent Starter Kit — template repo with Python + Node.js examples
License
MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Robocular/frostbyte-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server