Confidential guide on numerology and astrology, based of GG33 Public information

MCD-DEMO
Prueba de creación de servidores MCP simples e integrándose con Langchain Agent
3 years
Works with Finder
1
Github Watches
0
Github Forks
0
Github Stars
mcd-demo
Testing creation of simple MCP servers and integrating with LangChain agent
Prerequisites
Create a virtual environment
python3 -m venv venv
source venv/bin/activate
Install dependencies
pip install -r requirements.txt
Set Environment variables
Set the following environment variables. Get the values from Azure AI Foundry where the models are deployed:
export AZURE_OPENAI_API_KEY=<your_azure_openai_api_key>
export AZURE_OPENAI_ENDPOINT=<your_azure_openai_endpoint>
Optionally, you can set the following environment variables to configure the MCP servers:
export MCP_MATH_URI=http://<server-uri>:5001/sse
Note: You can also set these variables in a
.env
file in the root directory of the project.
Running the agent
Start the MCP servers
You have to start all three MCP servers before starting the agent. Each server listens on a separate port. You can start them in separate terminals or run them in the background. To run in the background, do the following:
python weather_server.py &
python math_server.py &
python telemetry_server.py &
Alternatively, you can run the math server in a Docker container. To do this, first build the Docker image:
make build
Then, run the container:
make run-local
If you want to push the Docker image to a registry, tag and push it using the following commands:
make login
make push
Start the agent
python agent.py
Killing the MCP servers
pkill -9 -f weather_server.py
pkill -9 -f math_server.py
pkill -9 -f telemetry_server.py
相关推荐
Converts Figma frames into front-end code for various mobile frameworks.
Advanced software engineer GPT that excels through nailing the basics.
Take an adjectivised noun, and create images making it progressively more adjective!
I find academic articles and books for research and literature reviews.
Embark on a thrilling diplomatic quest across a galaxy on the brink of war. Navigate complex politics and alien cultures to forge peace and avert catastrophe in this immersive interstellar adventure.
Descubra la colección más completa y actualizada de servidores MCP en el mercado. Este repositorio sirve como un centro centralizado, que ofrece un extenso catálogo de servidores MCP de código abierto y propietarios, completos con características, enlaces de documentación y colaboradores.
Manipulación basada en Micrypthon I2C del expansor GPIO de la serie MCP, derivada de AdaFruit_MCP230xx
Servidor MCP para obtener contenido de la página web con el navegador sin cabeza de dramaturgo.
Un poderoso complemento Neovim para administrar servidores MCP (protocolo de contexto del modelo)
Puente entre los servidores Ollama y MCP, lo que permite a LLM locales utilizar herramientas de protocolo de contexto del modelo
🔍 Habilitar asistentes de IA para buscar y acceder a la información del paquete PYPI a través de una interfaz MCP simple.
Reviews

user_QQVYG7Nq
As a devoted user of mcp applications, I found the mcd-demo by jspoelstra to be an impressive demonstration of practical functionality. The documentation is thorough, making it easy to get started quickly. Exploring the provided code on GitHub, I appreciated the clean and well-organized structure. Highly recommend checking it out: https://github.com/jspoelstra/mcd-demo.