MCP: Criando um MCP Server no MacOS

From Wiki
Revision as of 19:57, 8 July 2025 by Ebasso (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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