Channel3 MCP Server
Enables product search and shopping assistance through natural language, with a free tier available without API key.
README
Channel3 MCP Server
Quick Start (Free Tier)
No API key required. Connect directly and start searching:
https://mcp.trychannel3.com/
The free tier is rate-limited to 10 requests per minute per IP address. If you hit the limit, you'll receive an error response.
Unlimited Access
For unlimited usage and affiliate tracking, create an account and add your API key:
- Create an account at trychannel3.com and create an API key to authenticate requests and affiliate purchases to your account.
- Add the Channel3 MCP to your agent with
?apiKey=<your-api-key>in the URL as such:
https://mcp.trychannel3.com/?apiKey=placeholder
Cursor
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"Channel3": {
"url": "https://mcp.trychannel3.com/?apiKey=<your-api-key>"
}
}
}
To use the free tier (no API key, rate-limited), omit the apiKey parameter:
{
"mcpServers": {
"Channel3": {
"url": "https://mcp.trychannel3.com/"
}
}
}
VS Code
Add to .vscode/mcp.json:
{
"servers": {
"Channel3": {
"type": "http",
"url": "https://mcp.trychannel3.com/?apiKey=<your-api-key>"
}
}
}
Claude Code
claude mcp add --transport http Channel3 "https://mcp.trychannel3.com/?apiKey=<your-api-key>"
Claude Desktop
Add to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"Channel3": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.trychannel3.com/sse?apiKey=<your-api-key>"
]
}
}
}
OpenAI Agents SDK (Python)
import asyncio
from agents import Agent, Runner
from agents.mcp import MCPServerStreamableHttp
async def main():
async with MCPServerStreamableHttp(
name="Channel3",
params={
"url": "https://mcp.trychannel3.com/?apiKey=<your-api-key>",
},
cache_tools_list=True,
) as server:
agent = Agent(
name="Shopping Agent",
instructions="You are a personal shopping assistant.",
mcp_servers=[server],
)
result = await Runner.run(agent, "I'm looking for a new laptop")
print(result.final_output)
asyncio.run(main())
OpenAI Agents SDK (TypeScript)
import { Agent, run, MCPServerStreamableHttp } from "@openai/agents";
const server = new MCPServerStreamableHttp({
url: "https://mcp.trychannel3.com/?apiKey=<your-api-key>",
name: "Channel3",
});
await server.connect();
const agent = new Agent({
name: "Shopping Agent",
instructions: "You are a personal shopping assistant.",
mcpServers: [server],
});
const result = await run(agent, "I'm looking for a new laptop");
console.log(result.finalOutput);
await server.close();
Local Testing
- Start the dev server:
pnpm run dev - Start MCP Inspector:
npx @modelcontextprotocol/inspector - In the MCP Inspector UI:
- Transport Type: Streamable HTTP
- URL:
http://localhost:8787/?apiKey=<YOUR_API_KEY> - Click Connect
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.