Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Installing Development Tools | Setting Up and Configuration
Creating Custom AI Agents with Anthropic Claude

bookInstalling Development Tools

メニューを表示するにはスワイプしてください

Before building your first MCP server, you have to set up your development environment. MCP can be implemented in various languages like Python, Java, C#, or JavaScript. However, Python is one of the easiest and most suitable choices due to its simplicity, rich ecosystem, and strong support for rapid prototyping.

To install python go to the official website and click download latest version. After installing Python, you can install the necessary packages to build the MCP server using pip.

Note
Note

pip is a tool that comes with Python. It lets you easily install extra Python packages from the internet.

Using pip, you will need to install several packages. The installation process is quite simple and doesn't require any special setup. To do this, you just need to open the terminal.

How to Open a Terminal
expand arrow
  • On Windows: press Win + R, type cmd, and hit Enter;
  • On Mac: open Spotlight (Cmd + Space), type Terminal, and hit Enter;
  • On Linux: open your app launcher and search for Terminal.

Make sure your internet connection is active, as pip needs to download the packages from the Python Package Index (PyPI). And run the following command in the terminal to start the installation process.

terminal

terminal

copy
  • mcp[cli]: this is the core MCP package with command-line interface support, allowing you to run and manage the MCP server from your terminal;
  • openpyxl: a library for reading and writing Excel files (.xlsx), which lets your MCP server work with spreadsheet data;
  • numpy: a powerful library for numerical operations and data manipulation, useful for handling arrays, calculations, and data processing inside the server.

These packages together will give your MCP server the tools it needs to interact with data, process it efficiently, and communicate through the command line.

question mark

Which statement about AI integration with MCP servers is correct?

正しい答えを選んでください

すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 2.  1

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

セクション 2.  1
some-alt