🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

tuningsearch-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tuningsearch-mcp-server

MCP server for Free Google Search API service

0.1.4
latest
npm
Version published
Maintainers
1
Created
Source

TuningSearch MCP Server

A TuningSearch free google search server implemented based on Model Context Protocol, designed to provide TuningSearch API as a tool for large language models.

Features

  • Web Search: Supports general queries, real-time news, article search, with pagination and time-relevance controls
  • Flexible Filtering: Control result types, safety levels, and content freshness
  • Multilingual Support: Supports multiple languages including Chinese, English, Japanese, Korean, French, German, and Spanish

Tools

  • search

    • Execute TuningSearch search queries
    • Parameters:
      • query (required): Search query string
      • language (optional): Search language, e.g., 'zh-CN' or 'en-US'
      • page (optional): Result page number
      • safe (optional): Safety search level, 0=off, 1=moderate, 2=strict
      • time_range (optional): Search time range, values can be 'day', 'week', 'month', 'year'
  • quota

    • Check current TuningSearch API quota usage and limits
    • No parameters required

Configuration

Getting an API Key

  • Register an account at TuningSearch
  • Generate your API key

Usage

Docker

{
  "mcpServers": {
    "tuningsearch": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "TUNINGSEARCH_API_KEY",
        "tuningsearch/tuningsearch-mcp-server:latest"
      ],
      "env": {
        "TUNINGSEARCH_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

NPX

{
  "mcpServers": {
    "tuningsearch": {
      "command": "npx",
      "args": [
        "-y",
        "tuningsearch-mcp-server@latest"
      ],
      "env": {
        "TUNINGSEARCH_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Local Development

# Clone repository
git clone https://github.com/tuningsearch/tuningsearch-mcp-server.git
cd tuningsearch-mcp-server

# Install using npm
npm install

# Or using pnpm
pnpm install

# Create .env file and set API key
echo "TUNINGSEARCH_API_KEY=YOUR_API_KEY" > .env

# Build project
npm run build
# Or
pnpm run build

# Run server
npm start
# Or
pnpm start

Build

Docker build:

docker build -t tuningsearch/mcp-server:latest .

Troubleshooting

  • Ensure the environment variable TUNINGSEARCH_API_KEY is properly set
  • Check if the API key is valid
  • Verify your network connection to ensure access to the TuningSearch API

License

This project is open-source under the MIT License. This means you are free to use, modify, and distribute this software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.

Keywords

google

FAQs

Package last updated on 11 Apr 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts