[アップデート] Claude Code 上で MCP サーバーの詳細を表示できるようになりました
こんにちは!クラウド事業本部コンサルティング部のたかくに(@takakuni_)です。
Claude Code v1.0.18 のアップデートで Claude Code に設定した MCP サーバーの詳細情報が表示できるようになりました。
Added detailed MCP server tools display (/mcp)
アップデート内容
今まで、Claude Code 上で /mcp
と入力すると、 MCP が設定されていれば以下のようにどんな MCP サーバーの一覧が繋がっているのかまで、確認できる状態でした。(どんな Tools が設定されているのか /mcp
で確認するのは難しい状態でした。)
takakuni.shinnosuke@ claude-code % claude
╭────────────────────────────────────────────────────────╮
│ ✻ Welcome to Claude Code! │
│ │
│ /help for help, /status for your current setup │
│ │
│ cwd: /Users/takakuni.shinnosuke/Desktop/claude-code │
╰────────────────────────────────────────────────────────╯
Tips for getting started:
1. Ask Claude to create a new app or clone a repository
2. Use Claude to help with file analysis, editing, bash commands and git
3. Be as specific as you would with another engineer for the best results
4. ✔ Run /terminal-setup to set up terminal integration
╭───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Manage MCP Servers │
│ 1 server found │
│ │
│ ❯ 1. aws-documentation-mcp-server connected │
╰───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
Esc to cancel
今回のアップデートで Tools の詳細を Claude Code 上で確認できるようになりました。
やってみる
百聞は一見に如かずという言葉もありますので早速試してみましょう。
/mcp
と入力して aws-documentation-mcp-server
が繋がっている状態にあります。
takakuni.shinnosuke@ claude-code % claude
╭────────────────────────────────────────────────────────╮
│ ✻ Welcome to Claude Code! │
│ │
│ /help for help, /status for your current setup │
│ │
│ cwd: /Users/takakuni.shinnosuke/Desktop/claude-code │
╰────────────────────────────────────────────────────────╯
Tips for getting started:
1. Ask Claude to create a new app or clone a repository
2. Use Claude to help with file analysis, editing, bash commands and git
3. Be as specific as you would with another engineer for the best results
4. ✔ Run /terminal-setup to set up terminal integration
╭───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Manage MCP Servers │
│ 1 server found │
│ │
│ ❯ 1. aws-documentation-mcp-server connected │
╰───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
Esc to cancel
参考までに MCP サーバーを追加するためのコマンドは以下になります。
claude mcp add aws-documentation-mcp-server uvx "awslabs.aws-documentation-mcp-server@latest"
この状態で Enter を入力すると、MCP Server の内容が確認できるようになりました。接続方式やステータス、Tools の数が表示されていますね。
takakuni.shinnosuke@ claude-code % claude
╭────────────────────────────────────────────────────────╮
│ ✻ Welcome to Claude Code! │
│ │
│ /help for help, /status for your current setup │
│ │
│ cwd: /Users/takakuni.shinnosuke/Desktop/claude-code │
╰────────────────────────────────────────────────────────╯
Tips for getting started:
1. Ask Claude to create a new app or clone a repository
2. Use Claude to help with file analysis, editing, bash commands and git
3. Be as specific as you would with another engineer for the best results
4. ✔ Run /terminal-setup to set up terminal integration
╭───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ MCP Server: aws-documentation-mcp-server │
│ │
│ Type: stdio │
│ Status: Connected │
│ Tools: 3 │
│ │
│ ❯ 1. View tools │
│ 2. Back │
╰───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
Esc to go back
View tools
が選択された状態で、さらに Enter を押すと Tools の詳細に移ります。今回の場合だと、以下の 3 つのツールが用意されていますね。
- mcp__aws-documentation-mcp-server__read_documentation
- mcp__aws-documentation-mcp-server__search_documentation
- mcp__aws-documentation-mcp-server__recommend
takakuni.shinnosuke@ claude-code % claude
╭────────────────────────────────────────────────────────╮
│ ✻ Welcome to Claude Code! │
│ │
│ /help for help, /status for your current setup │
│ │
│ cwd: /Users/takakuni.shinnosuke/Desktop/claude-code │
╰────────────────────────────────────────────────────────╯
Tips for getting started:
1. Ask Claude to create a new app or clone a repository
2. Use Claude to help with file analysis, editing, bash commands and git
3. Be as specific as you would with another engineer for the best results
4. ✔ Run /terminal-setup to set up terminal integration
╭───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Tools for aws-documentation-mcp-server (3 tools) │
│ │
│ ❯ 1. mcp__aws-documentation-mcp-server__read_documentation │
│ 2. mcp__aws-documentation-mcp-server__search_documentation │
│ 3. mcp__aws-documentation-mcp-server__recommend │
╰───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
Esc to go back
詳細を確認したい Tool を選択した状態で、さらに Enter を押すと Tool への引数や使い方が出てくるようになりました。
ちなみに、Enter と Escape キーで進む/戻るを選択できます。
╭────────────────────────────────────────────────────────╮
│ ✻ Welcome to Claude Code! │
│ │
│ /help for help, /status for your current setup │
│ │
│ cwd: /Users/takakuni.shinnosuke/Desktop/claude-code │
╰────────────────────────────────────────────────────────╯
Tips for getting started:
1. Ask Claude to create a new app or clone a repository
2. Use Claude to help with file analysis, editing, bash commands and git
3. Be as specific as you would with another engineer for the best results
4. ✔ Run /terminal-setup to set up terminal integration
╭───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ mcp__aws-documentation-mcp-server__read_documentation (aws-documentation-mcp-server) │
│ │
│ Full name: mcp__aws-documentation-mcp-server__read_documentation │
│ │
│ Description: │
│ Fetch and convert an AWS documentation page to markdown format. │
│ │
│ ## Usage │
│ │
│ This tool retrieves the content of an AWS documentation page and converts it to markdown format. │
│ For long documents, you can make multiple calls with different start_index values to retrieve │
│ the entire content in chunks. │
│ │
│ ## URL Requirements │
│ │
│ - Must be from the docs.aws.amazon.com domain │
│ - Must end with .html │
│ │
│ ## Example URLs │
│ │
│ - https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html │
│ - https://docs.aws.amazon.com/lambda/latest/dg/lambda-invocation.html │
│ │
│ ## Output Format │
│ │
│ The output is formatted as markdown text with: ││ - Preserved headings and structure │
│ - Code blocks for examples │
│ - Lists and tables converted to markdown format │
│ │
│ ## Handling Long Documents │
│ │
│ If the response indicates the document was truncated, you have several options: │
│ │
│ 1. **Continue Reading**: Make another call with start_index set to the end of the previous response │
│ 2. **Stop Early**: For very long documents (>30,000 characters), if you've already found the specific information │
│ needed, you can stop reading │
│ │
│ Args: │
│ ctx: MCP context for logging and error handling │
│ url: URL of the AWS documentation page to read │
│ max_length: Maximum number of characters to return │
│ start_index: On return output starting at this character index │
│ │
│ Returns: │
│ Markdown content of the AWS documentation │
│ │
│ │
│ Parameters: │
│ • url (required): string - URL of the AWS documentation page to read │
│ • max_length: integer - Maximum number of characters to return. │
│ • start_index: integer - On return output starting at this character index, useful if a previous fetch was truncated │
│ and more content is required. │
╰───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
Esc to go back
まとめ
以上、小ネタですが地味に嬉しい「Claude Code 上で MCP サーバーの詳細を表示できるようになりました」でした。
あれ、あの MCP Server なんだっけ?どう使うんだっけ?となった時にドキュメントから探していたので、楽になったなぁ個人的には思いました。
クラウド事業本部コンサルティング部のたかくに(@takakuni_)でした!