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.
README
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
| Tool | Description |
|---|---|
ihyee_search |
Search the web and return extracted, summarized content from top results |
ihyee_fetch |
Fetch and extract content from specific web page URLs |
ihyee_render |
Force 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:
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
query |
string | Yes | Search query | |
max_results |
integer | No | 5 | Number of results (1-10) |
content_mode |
string | No | "both" | "both", "full_text", or "summary" |
render |
boolean | No | false | Use browser rendering |
before |
string | No | Results before date (YYYY-MM-DD) | |
after |
string | No | Results after date (YYYY-MM-DD) | |
must_have |
string | No | Required exact phrase |
ihyee_fetch
Fetch and extract content from specific URLs.
Parameters:
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
urls |
string[] | Yes | URLs to fetch (max 10) | |
content_mode |
string | No | "both" | "both", "full_text", or "summary" |
render |
boolean | No | false | Use browser rendering |
ihyee_render
Force browser rendering for JavaScript-heavy pages.
Parameters:
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
url |
string | Yes | URL to render | |
wait_for |
string | No | "networkidle" | "networkidle", "domcontentloaded", or "load" |
wait_selector |
string | No | CSS selector to wait for | |
timeout_ms |
integer | No | 30000 | Max wait time in ms |
Development
git clone https://github.com/aizukanne/ihyee-mcp.git
cd ihyee-mcp
pip install -e ".[dev]"
pytest
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.