🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@thunderbit/mcp-server

Package Overview
Dependencies
Maintainers
5
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thunderbit/mcp-server - npm Package Compare versions

Comparing version
1.0.3
to
1.0.4
+5
-5
package.json
{
"name": "@thunderbit/mcp-server",
"version": "1.0.3",
"mcpName": "io.github.thunderbit-open/thunderbit-mcp-server",
"version": "1.0.4",
"mcpName": "io.github.thunderbit-com/thunderbit-mcp-server",
"description": "Thunderbit MCP Server — AI-powered web scraping and structured data extraction for Claude, ChatGPT, and other MCP-compatible AI assistants.",

@@ -17,10 +17,10 @@ "keywords": [

],
"homepage": "https://thunderbit.com/open-api",
"homepage": "https://thunderbit.com/docs/mcp",
"repository": {
"type": "git",
"url": "git+https://github.com/thunderbit-open/thunderbit-mcp-server.git",
"url": "git+https://github.com/thunderbit-com/thunderbit-mcp-server.git",
"directory": "packages/mcp-server"
},
"bugs": {
"url": "https://github.com/thunderbit-open/thunderbit-mcp-server/issues"
"url": "https://github.com/thunderbit-com/thunderbit-mcp-server/issues"
},

@@ -27,0 +27,0 @@ "license": "MIT",

@@ -15,3 +15,3 @@ # @thunderbit/mcp-server

Backed by the Thunderbit Open API. Get a free API key at [thunderbit.com/open-api](https://thunderbit.com/open-api).
Backed by the Thunderbit Open API. Get a free API key at [app.thunderbit.com/console/api-keys](https://app.thunderbit.com/console/api-keys).

@@ -100,3 +100,3 @@ ---

| 401 | Invalid API key — check `THUNDERBIT_API_KEY` |
| 402 | Out of credits — top up at [thunderbit.com/billing](https://thunderbit.com/billing) |
| 402 | Out of credits — top up at [app.thunderbit.com/console/billing](https://app.thunderbit.com/console/billing) |
| 429 | Rate-limit exceeded — retry later |

@@ -111,3 +111,3 @@

```bash
git clone https://github.com/thunderbit-open/thunderbit-mcp-server.git
git clone https://github.com/thunderbit-com/thunderbit-mcp-server.git
cd thunderbit-mcp-server/packages/mcp-server

@@ -114,0 +114,0 @@ npm install

@@ -10,3 +10,3 @@ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";

name: "thunderbit-open-api",
version: "1.0.0",
version: "1.0.4",
},

@@ -17,3 +17,3 @@ {

"Thunderbit Open API MCP Server provides web scraping and structured data extraction tools. " +
"Use 'thunderbit_suggest_fields' to analyze a page and discover extractable fields before extraction. " +
"Use 'thunderbit_suggest_fields' to analyze a page and discover extractable fields before extraction (free, no credits). " +
"Use 'thunderbit_distill' to convert web pages to clean Markdown (1 credit). " +

@@ -23,3 +23,3 @@ "Use 'thunderbit_extract' to extract structured data using a JSON Schema (20 credits). " +

"All tools require a Thunderbit API key — set via THUNDERBIT_API_KEY env var or pass as 'apiKey' parameter. " +
"Get your API key at https://app.thunderbit.com/console.",
"Get your API key at https://app.thunderbit.com/console/api-keys.",
}

@@ -26,0 +26,0 @@ );

@@ -23,3 +23,3 @@ import { z } from "zod";

const hint = e.status === 402
? " — Top up at https://thunderbit.com/billing"
? " — Top up at https://app.thunderbit.com/console/billing"
: e.status === 401

@@ -26,0 +26,0 @@ ? " — Check your API key at https://app.thunderbit.com/console"