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., "@ihyee-mcpsearch for the latest news on Claude 3.5 Sonnet and summarize the top 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.
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 |
| Search the web and return extracted, summarized content from top results |
| Fetch and extract content from specific web page URLs |
| Force full browser rendering of a JavaScript-heavy web page |
Install
pip install ihyee-mcpConfigure
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.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
With Claude Code
claude mcp add ihyee -- ihyee-mcpThen 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-mcpThe 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 |
| string | Yes | Search query | |
| integer | No | 5 | Number of results (1-10) |
| string | No | "both" | "both", "full_text", or "summary" |
| boolean | No | false | Use browser rendering |
| string | No | Results before date (YYYY-MM-DD) | |
| string | No | Results after date (YYYY-MM-DD) | |
| string | No | Required exact phrase |
ihyee_fetch
Fetch and extract content from specific URLs.
Parameters:
Parameter | Type | Required | Default | Description |
| string[] | Yes | URLs to fetch (max 10) | |
| string | No | "both" | "both", "full_text", or "summary" |
| boolean | No | false | Use browser rendering |
ihyee_render
Force browser rendering for JavaScript-heavy pages.
Parameters:
Parameter | Type | Required | Default | Description |
| string | Yes | URL to render | |
| string | No | "networkidle" | "networkidle", "domcontentloaded", or "load" |
| string | No | CSS selector to wait for | |
| 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]"
pytestLicense
MIT
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.