
llmmcp
该仓库提供了如何设置和使用MCP SDK的说明,包括Python环境搭建及CLI工具。
Repository Info
About This Server
该仓库提供了如何设置和使用MCP SDK的说明,包括Python环境搭建及CLI工具。
Model Context Protocol (MCP) - This server can be integrated with AI applications to provide additional context and capabilities, enabling enhanced AI interactions and functionality.
Documentation
Configuración de MCP
Este documento explica cómo configurar el entorno para utilizar el SDK de MCP y, opcionalmente, sus herramientas de línea de comando (CLI).
Prerequisite knowledge
This quickstart assumes you have familiarity with:
- Python
- LLMs like Claude
System requirements
- Python 3.10 or higher installed.
- You must use the Python MCP SDK 1.2.0 or higher.
Set up your environment First, let’s install uv and set up our Python project and environment:
curl -LsSf https://astral.sh/uv/install.sh | sh
Make sure to restart your terminal afterwards to ensure that the uv command gets picked up.
Create a new directory for our project
uv init mcp-server
cd mcp-server
Create virtual environment and activate it
uv venv
source .venv/bin/activate # On Windows use: .venv\Scripts\activate
Install dependencies
uv add "mcp[cli]" httpx
uv add requests
uv add mcp
Opción 1: Probar con MCP Inspector (modo desarrollo)
Dado que instalamos el paquete con [cli], podemos ejecutar:
mcp dev server_demo1.py
Esto iniciará nuestro servidor Demo y abrirá una interfaz de desarrollo (generalmente en el navegador web) que nos permite ver qué recursos y herramientas expone el servidor, y llamarlos manualmente para verificar su funcionamiento
En este modo, podemos probar, por ejemplo, llamar a add con ciertos valores y ver si devuelve la suma correcta, o solicitar greeting://Alice y ver si obtenemos "Hola, Alice!" como respuesta. Esta prueba nos asegura que el servidor funciona correctamente por sí solo.
Opción 2: Claude Desktop
Añadimos stdio
if __name__ == "__main__":
mcp.run(transport='stdio')
run server
uv run server_demo1.py
mcp install server_demo2.py
uv add PyMuPDF
Opción 2: Client
uv run client_demo.py
Quick Start
Clone the repository
git clone https://github.com/albertoandroid/llmmcpInstall dependencies
cd llmmcp
npm installFollow the documentation
Check the repository's README.md file for specific installation and usage instructions.
Repository Details
Recommended MCP Servers
Discord MCP
Enable AI assistants to seamlessly interact with Discord servers, channels, and messages.
Knit MCP
Connect AI agents to 200+ SaaS applications and automate workflows.
Apify MCP Server
Deploy and interact with Apify actors for web scraping and data extraction.
BrowserStack MCP
BrowserStack MCP Server for automated testing across multiple browsers.
Zapier MCP
A Zapier server that provides automation capabilities for various apps.