Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Channel3 Server

БесплатноНе проверен

Enables product search and shopping assistance through natural language, with a free tier available without API key.

GitHubEmbed

Описание

Enables product search and shopping assistance through natural language, with a free tier available without API key.

README

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

  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=<YOUR_API_KEY>
    • Click Connect

from github.com/channel3-ai/mcp-server

Установка Channel3 Server

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/channel3-ai/mcp-server

FAQ

Channel3 Server MCP бесплатный?

Да, Channel3 Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Channel3 Server?

Нет, Channel3 Server работает без API-ключей и переменных окружения.

Channel3 Server — hosted или self-hosted?

Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.

Как установить Channel3 Server в Claude Desktop, Claude Code или Cursor?

Открой Channel3 Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Channel3 Server with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории development