惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
Google DeepMind News
Google DeepMind News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
The Blog of Author Tim Ferriss
A
About on SuperTechFans
N
Netflix TechBlog - Medium
阮一峰的网络日志
阮一峰的网络日志
H
Help Net Security
I
InfoQ
月光博客
月光博客
量子位
Blog — PlanetScale
Blog — PlanetScale
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
云风的 BLOG
云风的 BLOG
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
Engineering at Meta
Engineering at Meta
G
Google Developers Blog
D
DataBreaches.Net
宝玉的分享
宝玉的分享
V
Visual Studio Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理

SerpApi

Getting Started with Jev: Building a Fact Checker with SerpApi Vessel 0.3: Ruby finally gets its Scrapy crawling framework How to scrape Google Play Store app reviews Scrape YouTube Channel Data with SerpApi How to scrape movie and TV results from the Google Play Store SerpApi Weekly Changelog: Sep 07 - 13, 2026 SerpApi Weekly Changelog: Aug 31 - Sep 06, 2026 We Have Resolved the Google /goto URL Redirect Rollout How to scrape Zillow Reddit promised its users an open internet. Then it closed the door. SerpApi Weekly Changelog: August 24 - 30, 2026 Best web scraping tools in 2026 Google’s New /goto Redirect URLs: Resolution in Progress How to Scrape Walmart Reviews Results Understanding HTTP 429: Too Many Requests Google tried again. We’re moving to dismiss a second time. SerpApi Weekly Changelog: August 17 - 23, 2026 Introducing SerpApi's New Markdown Output SerpApi Surpasses 1.5 Million Activated User Accounts How a Lead Generation Company Scaled Outreach with SerpApi's Google Maps API SerpApi Weekly Changelog: August 10 - 16, 2026 How to scrape book results from the Google Play Store What is an API? Part 3: Dynamic Data Displays with D&D! We Filed an Amicus Brief in U.S. v. Google How to scrape Google Play Store game information SerpApi Weekly Changelog: August 03 - 09, 2026 Introducing SerpApi Search Tools: Real-Time Web Search for Python AI Agents Measuring World Cup Attention: What the data says about Vozinha SerpApi Weekly Changelog: July 27 - August 02, 2026 How to Scrape Google Maps Autocomplete
Introducing MCP Bundle Support for SerpApi
Adarsh Divakaran · 2026-09-09 · via SerpApi
Blog  /  mcp

We've added MCP Bundle (MCPB) support to the SerpApi MCP server. You can now download the server as a .mcpb file and install it in a desktop application that supports the bundle's format and runtime.

We've added MCP Bundle (MCPB) support to the SerpApi MCP server. You can now download the server as a .mcpb file and install it in a desktop application that supports the bundle's format and runtime.

The server gives AI assistants access to live search results from Google, Bing, YouTube, Amazon, and other sources through SerpApi. You can use it to research a topic, compare shopping results, find local businesses, or look up academic papers. With a bundle, the application handles installation and prompts you for your API key.

You can download it from our GitHub Releases.

What are MCP Bundles?

MCP Bundles package local Model Context Protocol servers for installation in desktop applications. Each .mcpb file is a ZIP archive with a manifest.json at its root. The manifest describes the server, its capabilities, and how the application should launch it.

The format's manifest specification also covers configuration fields and compatibility requirements. A server can declare a required API key, for example, so the application can collect it during setup. Developers can specify the operating systems and runtime versions their server supports.

MCPB is an open packaging format that other applications can implement. The official repository contains the specification, packaging tools, and code used by Claude Desktop to load bundles. An application's ability to connect to MCP servers does not automatically mean it can install .mcpb files. It needs support for the bundle's manifest version and server runtime as well.

Our SerpApi bundle runs the MCP server locally and sends search requests to SerpApi using your account. It includes the search tools and engine parameter schemas, along with the configuration needed to start the server. You can inspect the bundle manifest in our repository.

Adding SerpApi MCP to the Claude Desktop app

Claude Desktop is one application that supports MCP Bundles. This example uses its Extensions settings to install SerpApi, enter an API key, and run a search from a conversation.

You'll need the latest version of Claude Desktop and a SerpApi API key. You can create a SerpApi account if you don't have one yet.

  1. Download the bundle from SerpApi MCP's GitHub Releases. Under Assets, select the file ending in .mcpb, such as serpapi-mcp-1.0.3.mcpb.
  2. Open Claude Desktop and go to Settings > Extensions.
Claude Desktop Extensions
  1. Drag the downloaded .mcpb file onto the Extensions page and follow the installation prompts. When Claude asks for your SerpApi API Key, paste the key from your SerpApi dashboard into that field and complete the setup. Claude stores it as a sensitive setting and supplies it to the server as the SERPAPI_API_KEY environment variable.
Extension configuration

You can also select the file through Advanced settings > Install Extension..., as described in Claude's desktop extension instructions.

After installation, make sure that the SerpApi extension is enabled from the extension settings:

  1. Start a new conversation and ask Claude to use SerpApi. For example:
Use SerpApi to search Google for "best coffee shops in Austin". Show the top organic results with their ranking positions, titles, and links.

Allow Claude to use the SerpApi tool if prompted. You can then ask follow-up questions about the results in the same conversation.

Results for "best coffee shops in Austin" search using the SerpApi extension

After the first search, try a more specific task:

Find papers on Google Scholar about retrieval-augmented generation. Include the titles, authors, and publication links.
Results for Google Scholar search in Claude using the SerpApi extension

You can also ask for Google Shopping listings or YouTube tutorials. Name SerpApi and the search source in your prompt to specify which tool and data you want Claude to use.

The bundle also includes our MCP Apps tools for interactive search tables and dashboards in compatible hosts. We covered these views in MCP Apps with FastMCP: Turning Tool Output Into Interactive UI.

💡

If you've completed the Claude Desktop setup above, you're ready to use SerpApi. The next section is for advanced users who build and maintain MCP servers. You can skip it if you only want to use SerpApi.

How to add MCP Bundle support to your server

For an existing local MCP server, start by preparing its runtime files and adding a manifest. The official MCPB CLI can generate that manifest interactively:

npm install -g @anthropic-ai/mcpb
mcpb init

Run mcpb init in the directory you intend to package. Fill in your server's metadata, entry point, and configuration, then prepare its dependencies according to the runtime you choose.

The official packaging guidance recommends Node.js for reducing installation work in Claude Desktop because that application includes Node.js. MCPB also supports Python and compiled executables. The available server types are described in the server configuration reference:

Server type What to package
Node.js (node) Include the JavaScript entry point and its dependencies in node_modules.
Python (python) Include the Python entry point and dependencies in server/lib/ or a bundled virtual environment. Declare the required Python version.
Python with uv (uv) Include the source and pyproject.toml. A compatible host installs Python and the dependencies. This option requires manifest version 0.4 or later.
Compiled executable (binary) Include the executable and everything it needs to run on the target platform.

For Node.js, the guidance recommends reproducible dependency installation with commands such as npm ci. Traditional Python bundles need care with compiled dependencies, which can depend on the operating system and processor architecture. For binaries, the recommendation is to prefer static linking or include required shared libraries, then test on a clean system.

Use a .mcpbignore file to exclude development files from the archive. Once the runtime files are ready, validate the manifest and create the archive:

mcpb validate manifest.json
mcpb pack . my-server.mcpb

Install the finished bundle in your target application and check that it starts, accepts its configuration, and runs a tool successfully. Manifest validation checks the configuration's structure. An installation check exercises the packaged server.

How we package SerpApi

Our server is written in Python, and we use the uv runtime. The bundle includes the source, engine schemas, pyproject.toml, and uv.lock. Its launch command uses uv run --frozen --no-dev, so the host installs the locked dependencies without including development dependencies. We keep installed packages and local virtual environments out of the archive.

The API-key field is declared as required and sensitive. Its value is passed to the server through SERPAPI_API_KEY, which our local entry point reads when making searches.

Our bundle build script prepares the archive, checks its contents, and starts the packaged server over stdio for a smoke check. The release workflow attaches the resulting .mcpb file to a GitHub release. Developers can find the build instructions in the repository's MCP Bundle documentation.


Download the SerpApi bundle from GitHub Releases and try it with your next research task, from comparing products to finding academic papers. We'd like to hear how you're using it and what would make it more useful. Share your feedback, suggest a feature, or report a problem in the SerpApi MCP repository.