MCP Hub
Back to servers

ihyee-mcp

An MCP server that provides AI assistants with web search and intelligence capabilities via the ihyee API. It allows users to search the web, fetch extracted content from URLs, and perform full browser rendering for JavaScript-heavy websites.

glama
Updated
Mar 19, 2026

ihyee-mcp

MCP (Model Context Protocol) server for the ihyee web intelligence API. Gives AI assistants like Claude, Cursor, and other MCP clients the ability to search the web, fetch pages, and render JavaScript-heavy sites.

Tools

ToolDescription
ihyee_searchSearch the web and return extracted, summarized content from top results
ihyee_fetchFetch and extract content from specific web page URLs
ihyee_renderForce full browser rendering of a JavaScript-heavy web page

Install

pip install ihyee-mcp

Configure

Set your ihyee API key as an environment variable:

export IHYEE_API_KEY="your_api_key_here"

Get an API key at ihyee.delta-telematics.ca.

Usage

With Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "ihyee": {
      "command": "ihyee-mcp",
      "env": {
        "IHYEE_API_KEY": "your_api_key_here"
      }
    }
  }
}

Config file locations:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

With Claude Code

claude mcp add ihyee -- ihyee-mcp

Then set the API key in your environment or pass it via the MCP config.

With Cursor

Add to your Cursor MCP settings (.cursor/mcp.json):

{
  "mcpServers": {
    "ihyee": {
      "command": "ihyee-mcp",
      "env": {
        "IHYEE_API_KEY": "your_api_key_here"
      }
    }
  }
}

Direct (stdio)

IHYEE_API_KEY=your_key ihyee-mcp

The server communicates over stdin/stdout using the MCP protocol.

Tool Details

ihyee_search

Search the web and return extracted content from top results.

Parameters:

ParameterTypeRequiredDefaultDescription
querystringYesSearch query
max_resultsintegerNo5Number of results (1-10)
content_modestringNo"both""both", "full_text", or "summary"
renderbooleanNofalseUse browser rendering
beforestringNoResults before date (YYYY-MM-DD)
afterstringNoResults after date (YYYY-MM-DD)
must_havestringNoRequired exact phrase

ihyee_fetch

Fetch and extract content from specific URLs.

Parameters:

ParameterTypeRequiredDefaultDescription
urlsstring[]YesURLs to fetch (max 10)
content_modestringNo"both""both", "full_text", or "summary"
renderbooleanNofalseUse browser rendering

ihyee_render

Force browser rendering for JavaScript-heavy pages.

Parameters:

ParameterTypeRequiredDefaultDescription
urlstringYesURL to render
wait_forstringNo"networkidle""networkidle", "domcontentloaded", or "load"
wait_selectorstringNoCSS selector to wait for
timeout_msintegerNo30000Max wait time in ms

Development

git clone https://github.com/aizukanne/ihyee-mcp.git
cd ihyee-mcp
pip install -e ".[dev]"
pytest

License

MIT

Reviews

No reviews yet

Sign in to write a review