Google Search74 MCP Server
Performs Google search queries, retrieving search results and optionally related keywords.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Google Search74 MCP Serversearch for latest AI news and return 5 results"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Google Search74 MCP Server
RapidAPI: herosAPI/google-search74
简介
这是一个使用 FastMCP 自动生成的 MCP 服务器,用于访问 Google Search74 API。
PyPI 包名:
bach-google_search74版本: 1.0.0
来源平台: openapi
传输协议: stdio
Related MCP server: Custom Search MCP Server
安装
从 PyPI 安装:
pip install bach-google_search74从源码安装:
pip install -e .运行
方式 1: 使用 uvx(推荐,无需安装)
# 运行(uvx 会自动安装并运行)
uvx --from bach-google_search74 bach_google_search74
# 或指定版本
uvx --from bach-google_search74@latest bach_google_search74方式 2: 直接运行(开发模式)
python server.py方式 3: 安装后作为命令运行
# 安装
pip install bach-google_search74
# 运行(命令名使用下划线)
bach_google_search74配置
API 认证
此 API 需要认证。请设置环境变量:
export API_KEY="your_api_key_here"在 Claude Desktop 中使用
编辑 Claude Desktop 配置文件 claude_desktop_config.json:
{
"mcpServers": {
"google_search74": {
"command": "python",
"args": ["E:\path\to\google_search74\server.py"],
"env": {
"API_KEY": "your_api_key_here"
}
}
}
}注意: 请将 E:\path\to\google_search74\server.py 替换为实际的服务器文件路径。
可用工具
此服务器提供以下工具:
search
The Google Search74 API endpoint allows users to perform a Google search query and retrieve relevant results based on the provided input. This endpoint is ideal for applications that require automated search capabilities, such as content aggregation, market research, or keyword analysis. ### Key Features: 1. Search Functionality: Execute a search query on Google and retrieve results. 2. Limit Results: Specify the maximum number of results to be returned. 3. Related Keywords: Optionally include related keywords in the response for deeper insights. ### Parameters: - query (string): The search term or keyword to query on Google. For example, "Nike". - limit (integer): The maximum number of search results to return. For example, 10. - related_keywords (boolean): A flag to include related keywords in the response. Set to true to retrieve related keywords, or false to exclude them. ### Response: The endpoint returns a structured JSON object containing: - Search Results: A list of search results, including titles, URLs, and snippets. - Related Keywords (if enabled): A list of keywords related to the search query for further exploration. This endpoint is designed to streamline search operations and provide actionable insights for applications leveraging Google search data.
端点: GET /
参数:
query(string): Example value: Nikelimit(integer): Example value: 10related_keywords(boolean): Example value: true
技术栈
FastMCP: 快速、Pythonic 的 MCP 服务器框架
传输协议: stdio
HTTP 客户端: httpx
开发
此服务器由 API-to-MCP 工具自动生成。
生成时间: 1.0.0
Available Tools
1 toolsearchA
The Google Search74 API endpoint allows users to perform a Google search query and retrieve relevant results based on the provided input. This endpoint is ideal for applications that require automated search capabilities, such as content aggregation, market research, or keyword analysis. ### Key Features: 1. Search Functionality: Execute a search query on Google and retrieve results. 2. Limit Results: Specify the maximum number of results to be returned. 3. Related Keywords: Optionally include related keywords in the response for deeper insights. ### Parameters: - query (string): The search term or keyword to query on Google. For example, "Nike". - limit (integer): The maximum number of search results to return. For example, 10. - related_keywords (boolean): A flag to include related keywords in the response. Set to true to retrieve related keywords, or false to exclude them. ### Response: The endpoint returns a structured JSON object containing: - Search Results: A list of search results, including titles, URLs, and snippets. - Related Keywords (if enabled): A list of keywords related to the search query for further exploration. This endpoint is designed to streamline search operations and provide actionable insights for applications leveraging Google search data.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Example value: 10 | |
| query | No | Example value: Nike | |
| related_keywords | No | Example value: true |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full behavioral disclosure burden. It clearly explains the tool executes a search query with limit and optional related keywords, describes the response structure (search results and keywords), and implies read-only behavior by nature of search. However, it doesn't mention rate limits or auth requirements, but this is reasonable for a search API.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with sections and bullet points, but it is somewhat verbose. For example, the 'Key Features' section largely repeats information from the parameter and response descriptions. Some sentences like 'This endpoint is designed to streamline search operations...' could be condensed.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has three parameters, no required fields, full schema coverage, and an output schema, the description is largely complete. It explains the search functionality, parameter options, and response format. The only minor omission is a note that no parameters are required (all optional), but the schema already indicates this.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, but the description adds substantial semantic value by explaining each parameter in plain language (e.g., 'search term or keyword to query on Google') and providing concrete examples for each. This goes well beyond the schema's minimal descriptions (just 'Example value').
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states the tool performs a Google search query and retrieves relevant results, with specific use cases like content aggregation and market research. The verb 'search' and resource 'Google' are clearly defined, and the description distinguishes itself from unknown siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description mentions ideal use cases (automated search, content aggregation, etc.) and lists functional features, but it does not explicitly state when not to use this tool or provide guidance on alternatives, which is a gap given no sibling tools are listed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
v1.0.0- First observed
search
TDQS
With only one tool, there is no possibility of confusion. The tool's purpose is clear and unambiguous.
The single tool name 'search' is a verb, consistent with itself. There is no inconsistency to evaluate.
One tool for a focused search server is reasonable. While it is on the low end of typical tool counts, the scope is narrow and adequately served by a single endpoint.
The tool covers the core search functionality with parameters for query, limit, and related keywords. It is complete for the stated purpose of performing Google searches.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server for Google search results via SERP API
Google Ads MCP server — manage campaigns, keywords, and metrics.
Serper MCP — wraps the Serper Google Search API (serper.dev)
Related MCP Servers
- AlicenseBqualityFmaintenanceA powerful MCP server that enables parallel Google searching with multiple keywords simultaneously, providing structured results while handling CAPTCHAs and simulating user browsing patterns.198272MIT
- FlicenseNot gradedqualityDmaintenanceAn MCP server that enables interaction with Google Custom Search API through natural language, allowing users to perform searches programmatically via the Multi-Agent Conversation Protocol.-
- -licenseNot gradedqualityNot gradedmaintenanceAn MCP (Multi-Agent Conversation Protocol) Server that enables interaction with Google's Custom Search API, allowing agents to perform customized web searches through natural language requests.-
- AlicenseAqualityCmaintenanceAn MCP server that provides Google Search functionality with automatic API key rotation and intelligent quota management, enabling natural language search queries with advanced filtering options.1241MIT
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/BACH-AI-Tools/google_search74'
If you have feedback or need assistance with the MCP directory API, please join our Discord server