📊つかえる関数.com
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-stream

APIキー

MCPサーバーへの接続にはAPIキーが必要です。メールアドレスを入力するだけで無料で取得できます。

無料
60 req/min・全4ツール利用可・IP紐付けで不正利用防止
APIキーを取得する(無料)

利用可能なツール(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}