MCP: Criando um MCP Server no MacOS: Difference between revisions

From Wiki
(Created page with " Using uv to manage your Python projects. brew install uv If you haven't created a uv-managed project yet, create one: uv init mcp-server-demo --python=3.11.13 cd mcp-server-demo Then add MCP to your project dependencies: uv add "mcp[cli]" To run the mcp command with uv: uv run mcp The output is File:Uv-output-01.png = Ver também = * Artigos sobre Cloud * Mais Artigos sobre Cloud / WebDev / Tecnologias Category:Model...")
(No difference)

Revision as of 19:57, 8 July 2025

Using uv to manage your Python projects.

brew install uv

If you haven't created a uv-managed project yet, create one:

uv init mcp-server-demo --python=3.11.13
cd mcp-server-demo

Then add MCP to your project dependencies:

uv add "mcp[cli]"

To run the mcp command with uv:

uv run mcp

The output is

Ver também