Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprenda 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?

Select the correct answer

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 2. Capítulo 1

Pergunte à IA

expand

Pergunte à IA

ChatGPT

Pergunte o que quiser ou experimente uma das perguntas sugeridas para iniciar nosso bate-papo

Awesome!

Completion rate improved to 11.11

bookInstalling Development Tools

Deslize para mostrar o menu

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?

Select the correct answer

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 2. Capítulo 1
some-alt