Claude Chat App MCP Server

MCP server for comprehensive seat reservation system management

Local serverstdioTypeScript

What is the Claude Chat App MCP server?

MCP server for comprehensive seat reservation system management. The claude chat app mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 10 defined tools rather than through you.

What it actually does

座席予約システムの包括的なAPIとやり取りするためのModel Context Protocolサーバーです。オフィス管理、座席予約、コメント機能などを提供します。

Its toolset

Everything the assistant can do here goes through one of these:

  • get_offices — The get_offices tool exposed by this server
  • get_office — The get_office tool exposed by this server
  • get_office_seats — The get_office_seats tool exposed by this server
  • get_reservations — The get_reservations tool exposed by this server
  • create_reservation — The create_reservation tool exposed by this server
  • update_reservation — The update_reservation tool exposed by this server
  • get_available_seats — The get_available_seats tool exposed by this server
  • find_seat_by_number — The find_seat_by_number tool exposed by this server
  • add_comment — The add_comment tool exposed by this server
  • get_seat_comments — The get_seat_comments tool exposed by this server

Adding it to your client

Installation goes through your MCP client rather than a global install: point it at @modelcontextprotocol/sdk on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

When to reach for it

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Claude Chat App's toolset — get_offices, get_office, get_office_seats and 7 more — is a fair guide to whether it matches your workflow. It is maintained by nomura565; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 10 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Claude Chat App.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the claude chat app mcp server does with a few real requests.

Available tools

ToolWhat it does
get_officesThe get_offices tool exposed by this server.
get_officeThe get_office tool exposed by this server.
get_office_seatsThe get_office_seats tool exposed by this server.
get_reservationsThe get_reservations tool exposed by this server.
create_reservationThe create_reservation tool exposed by this server.
update_reservationThe update_reservation tool exposed by this server.
get_available_seatsThe get_available_seats tool exposed by this server.
find_seat_by_numberThe find_seat_by_number tool exposed by this server.
add_commentThe add_comment tool exposed by this server.
get_seat_commentsThe get_seat_comments tool exposed by this server.

How to install the Claude Chat App MCP server

{
  "mcpServers": {
    "claude-chat-app": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/sdk"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use Claude Chat App to get offices.
  • Use Claude Chat App to get office.
  • Use Claude Chat App to get office seats.

Frequently asked questions

It connects Claude Chat App to MCP-compatible AI assistants such as Claude and Cursor, exposing 10 tools (get_offices, get_office, get_office_seats, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Claude Chat App directly.