Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables LLMs to control EDCB, a broadcast recording software, allowing program information retrieval and reservation management.

README.md

EDCB MCP Server

EDCBをLLMから操作するためのMCPサーバー。番組情報取得、予約管理などが可能です。

前提

  • EDCBがWebUIとともに起動していること
  • Material WebUIがインストールされていること(/EMWUI/パスが有効であること)
  • デフォルト接続先: http://localhost:5510

ビルド

npm install
npm run build

Claude Desktop 設定

~/Library/Application Support/Claude/claude_desktop_config.json に追加:

{
  "mcpServers": {
    "edcb": {
      "command": "node",
      "args": ["/path/to/EDCB-MCPServer/dist/index.js"],
      "env": {
        "EDCB_URL": "http://192.168.1.x:5510"
      }
    }
  }
}

利用可能なツール

| ツール | 説明 | |--------|------| | ping | EDCBサーバーへの接続確認 | | get_services | チャンネル一覧取得 | | get_epg | 特定チャンネルの番組表取得 | | get_event_info | 番組詳細取得 | | search_events | キーワード番組検索 | | get_reserves | 録画予約一覧取得 | | add_reserve | 録画予約追加(デフォルトプリセット使用) | | set_reserve_enabled | 録画予約の有効/無効切り替え | | delete_reserve | 録画予約削除 | | change_reserve | 録画予約設定変更 | | get_rec_info | 録画済み番組一覧取得 | | get_auto_add | 自動予約(EPGキーワード)一覧取得 |

使用例

自然言語でEDCBを操作できます。

番組を検索して予約

「推しの子」の最終話を自然言語で検索し、放送チャンネルを選んで録画予約。

!番組検索と予約

予約状況の確認

録画予約や自動予約の確認もチャット形式で行えます。

!予約確認

EPGを使った番組検索

今後放送されるプロ野球の生中継一覧をEPGから検索して表示。

!EPG番組検索

APIリファレンス

# チャンネル一覧(地上波のみ)
get_services(network="地上波")

# NHK総合の番組表を取得
get_epg(onid=32272, tsid=32272, sid=30720)

# 番組を予約
add_reserve(onid=32272, tsid=32272, sid=30720, eid=20202)

# 予約一覧確認
get_reserves()

# 予約を一時的に無効化(予約は残る)
set_reserve_enabled(id=2466, enabled=False)

# 予約を再度有効化
set_reserve_enabled(id=2466, enabled=True)

# 予約削除(取り消し不可)
delete_reserve(id=2466)

環境変数

| 変数 | デフォルト | 説明 | |------|-----------|------| | EDCB_URL | http://localhost:5510 | EDCBサーバーのURL |

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use AI & ML servers.