Incorporo/valueserp-googlesearch-mcp
If you are the rightful owner of valueserp-googlesearch-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The ValueSerp MCP Server provides access to ValueSerp's Google Search API, enabling various types of Google searches.
๐ ValueSerp MCP Server
Real-time Google Search Integration for Claude AI
Powered by ValueSerp API โข Built with Model Context Protocol
๐ What This Does
Transform Claude AI into a powerful search engine with real-time access to Google's vast knowledge base. This MCP server enables Claude to perform live Google searches, browse news, discover images, and find videos - all without leaving the conversation.
โจ Key Highlights
- ๐ Live Google Search - Real-time web, news, image, and video search
- ๐ผ๏ธ Smart Image Processing - Automatic base64 image detection and native display
- ๐ CSV Output Support - Structured data extraction with 50+ field options
- ๐ Global Localization - Search in any language, country, or region
- โก High Performance - Built with TypeScript, comprehensive error handling
- ๐ Production Ready - Extensive test coverage and security best practices
๐ ๏ธ Features
๐ Search Tools
|
๐ฏ Advanced Capabilities
|
๐ผ๏ธ Revolutionary Image Processing
Our advanced image processing system automatically detects and converts base64 images in API responses to native MCP image resources, providing a seamless visual experience in Claude.
Features:
- โ Automatic base64 detection (PNG, JPEG, GIF, WebP, SVG)
- โ MIME type recognition and validation
- โ Size optimization (1MB limit compliance)
- โ Circular reference handling
- โ
User-controllable with
process_images
parameter
๐ Quick Start
Prerequisites
# Required
Node.js 18+
ValueSerp API Key (get free at valueserp.com)
git clone
Installation
Easiest: Use the published npm package (recommended)
# Install globally
npm install -g @incorporo/valueserp-mcp
# OR run directly without installing
npx @incorporo/valueserp-mcp
Check version:
valueserp-mcp --version # prints 1.0.0
Set your API key (required):
export VALUESERP_API_KEY="your_api_key_here"
Then run (if installed globally):
valueserp-mcp
Manual (clone & build)
# 1. Clone the repository
git clone <repository-url>
cd valueserp-mcp
# 2. Install dependencies
npm install
# 3. Build the project
npm run build
# 4. Set your API key
export VALUESERP_API_KEY="your_api_key_here"
# 5. Start the server
npm start
Claude Desktop Setup
Add to your Claude Desktop configuration:
๐ Config Location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"valueserp": {
"command": "valueserp-mcp",
"env": {
"VALUESERP_API_KEY": "your_api_key_here"
}
}
}
}
๐ฆ Published Package
The server is published to npm as @incorporo/valueserp-mcp
.
name: @incorporo/valueserp-mcp
version: 1.0.0
files: dist/*.js + types, README, LICENSE
size: ~33 kB (compressed)
Verify from your environment:
npm view @incorporo/valueserp-mcp version
Upgrade to the latest version anytime:
npm install -g @incorporo/valueserp-mcp@latest
Or run on-demand without global install:
npx @incorporo/valueserp-mcp
๐๏ธ Changelog
1.0.0
- Initial public release on npm
- CLI executable (
valueserp-mcp
) with stdio transport - Search tools: web, news, images, videos, places, place details
- Automatic base64 image extraction to MCP image blocks
๐ Usage Guide
Basic Web Search
{
"tool": "google_search",
"parameters": {
"q": "latest AI developments 2025",
"location": "United States",
"num": 10,
"time_period": "last_week",
"include_ai_overview": true
}
}
News Search with Sorting
{
"tool": "google_news_search",
"parameters": {
"q": "climate change",
"sort_by": "date",
"location": "United Kingdom",
"num": 15,
"time_period": "last_day"
}
}
Image Search with Processing
{
"tool": "google_images_search",
"parameters": {
"q": "modern architecture",
"images_size": "large",
"images_color": "any",
"process_images": true,
"num": 20
}
}
Video Discovery
{
"tool": "google_videos_search",
"parameters": {
"q": "TypeScript tutorials",
"time_period": "last_month",
"safe": "active",
"num": 10
}
}
Places & Local Business Search
{
"tool": "google_places_search",
"parameters": {
"q": "coffee shops",
"location": "San Francisco, CA",
"num": 20,
"process_images": true
}
}
Place Details Lookup
{
"tool": "google_place_details",
"parameters": {
"data_id": "0x87b7122bd8e99a89:0xf20c18461109b2c0",
"hl": "en",
"process_images": true
}
}
โ๏ธ Configuration Options
๐ง Complete Parameter Reference
Common Parameters (All Tools)
Parameter | Type | Description | Example |
---|---|---|---|
q | string | Required. Search query | "machine learning" |
location | string | Geographic location | "New York, NY" |
gl | string | Country code | "us" |
hl | string | Language code | "en" |
num | number | Results per page (1-100) | 10 |
page | number | Page number | 1 |
safe | string | Safe search (active /off ) | "active" |
time_period | string | Time filter | "last_week" |
process_images | boolean | Enable image processing | true |
News-Specific Parameters
Parameter | Type | Description |
---|---|---|
sort_by | string | Sort by relevance or date |
show_duplicates | boolean | Show duplicate articles |
Image-Specific Parameters
Parameter | Type | Options |
---|---|---|
images_color | string | any , black_and_white , transparent , red , blue , etc. |
images_size | string | large , medium , icon |
images_type | string | clipart , line_drawing , gif |
images_usage | string | Usage rights filter |
Places-Specific Parameters
Parameter | Type | Description |
---|---|---|
location | string | Geographic location for places search. Text location name or lat:lon coordinates |
num | number | Number of places results per page (maximum 20) |
order_online | boolean | Returns pickup/delivery info for restaurants (costs 2 credits) |
nfpr | number | Exclude auto-corrected results (1) or include (0) |
Place Details Parameters
Parameter | Type | Description |
---|---|---|
data_id | string | Google Places data ID for detailed info (more profile data) |
data_cid | string | Google Maps data CID for basic info (limited profile) |
hl | string | Language code for UI language (default: en) |
Note: Either data_id
OR data_cid
must be provided (mutually exclusive)
๐ CSV Fields & Data Structure
Rich Data Extraction
Each search type supports extensive CSV field extraction for structured data processing:
๐ Available CSV Fields by Search Type
Web Search Fields
organic_results.position, organic_results.title, organic_results.link,
organic_results.snippet, organic_results.displayed_link,
search_information.total_results, related_questions.question,
knowledge_graph.title, local_results.title, local_results.address
News Search Fields
news_results.position, news_results.title, news_results.source,
news_results.date, news_results.link, news_results.snippet,
news_results.thumbnail, search_information.total_results
Image Search Fields
image_results.position, image_results.title, image_results.width,
image_results.height, image_results.image, image_results.link,
image_results.source.name, image_results.description
Video Search Fields
video_results.position, video_results.title, video_results.link,
video_results.length, video_results.source, video_results.date,
video_results.snippet, search_information.total_results
Places Search Fields
places_results.position, places_results.title, places_results.address,
places_results.phone, places_results.rating, places_results.reviews,
places_results.category, places_results.gps_coordinates.latitude,
places_results.gps_coordinates.longitude, local_results.title,
local_results.address, local_results.rating, local_results.reviews
Place Details Fields
place_details.title, place_details.type, place_details.address,
place_details.phone, place_details.website, place_details.rating,
place_details.reviews, place_details.description, place_details.hours,
place_details.gps_coordinates.latitude, place_details.gps_coordinates.longitude
๐งช Testing & Quality
Comprehensive Test Suite
# Run all tests
npm test
# Run with coverage
npm run test:coverage
# Run specific test suites
npm test tests/unit/
npm test tests/integration/
Test Coverage:
- โ 56 tests passing across unit and integration suites
- โ 6 search tools - Web, News, Images, Videos, Places, and Place Details
- โ Image processing - 24 comprehensive tests
- โ API validation - Parameter validation and error handling
- โ Integration testing - Real-world scenario validation
Code Quality
- ๐ TypeScript - Full type safety and IntelliSense
- ๐ก๏ธ Error Handling - Graceful failure recovery
- ๐ Documentation - Comprehensive inline documentation
- ๐ Security - No hardcoded secrets, input validation
๐ฏ Advanced Features
๐ผ๏ธ Base64 Image Processing
Revolutionary feature that automatically detects base64 images in API responses and converts them to native MCP image resources.
{
"tool": "google_images_search",
"parameters": {
"q": "cats",
"process_images": true // Enable automatic image processing
}
}
How it works:
- ๐ Detection - Scans API responses for base64 image data
- ๐ Conversion - Converts to MCP-compatible image blocks
- ๐ผ๏ธ Display - Images render natively in Claude interface
- โก Optimization - Respects 1MB size limits for performance
๐ Global Localization
Search in any language, country, or region with precise targeting:
{
"location": "Tokyo, Japan",
"gl": "jp",
"hl": "ja",
"google_domain": "google.co.jp"
}
๐จ Error Handling
The server provides comprehensive error handling:
- ๐ Parameter Validation - Clear error messages for invalid inputs
- ๐ Network Resilience - Automatic retry logic and timeout handling
- ๐ API Error Translation - Human-readable ValueSerp API error messages
- ๐ก๏ธ Security - Input sanitization and rate limiting awareness
๐ Resources
Resource | Description |
---|---|
๐ Implementation Guide | Detailed setup and usage tutorial |
๐ง ValueSerp API Docs | Complete API reference |
๐๏ธ MCP Protocol | Model Context Protocol specification |
๐ก Get API Key | Free ValueSerp API access |
๐ค Contributing
We welcome contributions! Here's how to get started:
# Development setup
git clone <repo-url>
cd valueserp-mcp
npm install
npm run dev
# Run tests
npm test
# Build
npm run build
๐ License
This project is licensed under the GNU General Public License v3.0 - see the file for details.
GPL v3 ensures this software remains free and open source. Any derivative works must also be licensed under GPL v3, preserving the freedom for all users to run, study, share, and modify the software.