MCP (Model Context Protocol)
AIエージェントから
Excel Q&Aに直接アクセス
Claude、ChatGPT、Cursor等のAIアシスタントが、当サイトの414件のQ&A・数式診断・互換チェック・書き換え辞典を直接参照してExcelの質問に回答できます。
接続方法
1Claude Desktop
claude_desktop_config.json に以下を追加:
claude_desktop_config.json
{
"mcpServers": {
"excel-qa": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://mcp.kansuu.mcpbase.work/mcp",
"--header",
"Authorization:Bearer YOUR_API_KEY"
]
}
}
}2Cursor / Windsurf
プロジェクトルートの .cursor/mcp.json に以下を追加:
.cursor/mcp.json
{
"mcpServers": {
"excel-qa": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://mcp.kansuu.mcpbase.work/mcp",
"--header",
"Authorization:Bearer YOUR_API_KEY"
]
}
}
}3Claude Code (CLI)
ターミナル
claude mcp add excel-qa \
-- npx -y mcp-remote https://mcp.kansuu.mcpbase.work/mcp \
--header "Authorization:Bearer YOUR_API_KEY"4HTTP直接(任意のMCPクライアント)
エンドポイント情報
URL: https://mcp.kansuu.mcpbase.work/mcp
Transport: Streamable HTTP (POST)
Auth: Authorization: Bearer YOUR_API_KEY
Headers: Content-Type: application/json
Accept: application/json, text/event-streamAPIキー
利用可能なツール(4つ)
search_qa
414件のExcel Q&Aをキーワード・カテゴリ・バージョン・目的・難易度で検索
例: 「VLOOKUP」「ピボットテーブル 2019」「エラー対処 初級」
diagnose_formula
Excel数式のエラー原因を診断し、修正案を提示
例: =XLOOKUP(A1,B:B,C:C) が #NAME? → バージョン非互換を検出
check_compatibility
数式内の関数が Excel 2016/2019/2021/365 のどれで動くか判定
例: =FILTER(SORT(...)) → 2021+必要、代替方法あり
search_rewrite_guide
旧関数→新関数の書き換え方法を20パターンで検索
例: VLOOKUP → XLOOKUP、IF連結 → IFS
リソース(4つ)
qa://item/{id}414件のQ&Aを個別に取得qa://categories全21カテゴリ一覧qa://rewrite-guide/{slug}20件の書き換えガイドを個別に取得qa://formula-combos関数コンボ20選ランキング自動検出
以下のエンドポイントからMCPサーバーの情報を自動検出できます。
/.well-known/mcp.jsonMCP Server Card/llms.txtAI向けサイト情報<link rel="mcp-server">HTML内リンクタグステータス確認
ヘルスチェック
curl https://mcp.kansuu.mcpbase.work/health
# => {"status":"ok","version":"1.0.0","qaCount":414}