AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Channel3 Ai Mcp Server

mcp-channel3-ai-mcp-server · by channel3-ai

Channel3 MCP Server — search millions of products from any AI agent

No reviews yet
0 installs
5 views
0.0% view→install

Install

$ agentstack add mcp-channel3-ai-mcp-server

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-channel3-ai-mcp-server)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Channel3 Ai Mcp Server? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

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:

  1. Create an account at trychannel3.com and create an API key to authenticate requests and affiliate purchases to your account.
  2. Add the Channel3 MCP to your agent with ?apiKey= 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="
    }
  }
}

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="
    }
  }
}

Claude Code

claude mcp add --transport http Channel3 "https://mcp.trychannel3.com/?apiKey="

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="
      ]
    }
  }
}

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=",
        },
        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=",
  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

  1. Start the dev server: pnpm run dev
  2. Start MCP Inspector: npx @modelcontextprotocol/inspector
  3. In the MCP Inspector UI:
  • Transport Type: Streamable HTTP
  • URL: http://localhost:8787/?apiKey=
  • Click Connect

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.