An MCP (Model Context Protocol) server providing AI-powered weather tools via Google Generative AI.
- Overview
- Features
- Tech Stack
- Project Structure
- Prerequisites
- Installation
- Configuration
- Usage / Quick Start
- Scripts
- Contributing
- License
mcp-foundry is a monorepo implementing the Model Context Protocol (MCP) architecture with a weather service backend. It consists of an MCP server that provides weather tools and an AI agent host that uses Google Generative AI (Gemini) to intelligently invoke those tools. The system demonstrates how LLMs can orchestrate tool calls through the MCP standard for structured, reliable tool integration.
- π¦οΈ Real-time weather data via OpenWeather API
- π€ AI-powered tool orchestration with Gemini
- π‘ Model Context Protocol (MCP) implementation
- π Stdio-based server transport for inter-process communication
- π― Type-safe tool definitions with Zod schema validation
- π¦ Monorepo structure with separate server and host applications
| Technology | Purpose | Version |
|---|---|---|
| TypeScript | Language | ^6.0.3 |
| Node.js | Runtime | >=18.0.0 |
@modelcontextprotocol/sdk |
MCP server/client implementation | ^1.29.0 |
@google/genai |
Google Generative AI SDK | ^2.2.0 |
dotenv |
Environment variable management | ^17.4.2 |
zod |
Runtime schema validation | ^3.25.76 |
mcp-foundry/
βββ apps/
β βββ mcp-server/ # MCP server providing weather tools
β β βββ src/
β β β βββ index.ts # Weather tool definitions and MCP server setup
β β βββ build/ # Compiled JavaScript
β β βββ tsconfig.json
β β
β βββ mcp-host/ # AI agent host orchestrating tool calls
β βββ src/
β β βββ agent.ts # Gemini AI agent loop
β β βββ client.ts # MCP client connecting to server
β β βββ mcp-client/ # Client transport layer
β βββ build/ # Compiled JavaScript
β βββ tsconfig.json
β
βββ package.json # Workspace dependencies and scripts
βββ tsconfig.base.json # Base TypeScript configuration
βββ .env # Environment variables (local)
βββ .github/
β βββ copilot-instructions.md # Copilot README generation rules
βββ README.md # This file
- Node.js >=18.0.0
- npm >=9.0.0
- OpenWeather API Key
- Google Generative AI API Key
- Clone the repository:
git clone <repository-url>
cd mcp-foundry- Install dependencies:
npm install- Build the projects:
npm run buildExpected output:
# output
# compiles apps/mcp-server/src/**/*.ts β apps/mcp-server/build/
# compiles apps/mcp-host/src/**/*.ts β apps/mcp-host/build/Create a .env file in the repository root with the following variables:
| Variable | Description | Required | Example |
|---|---|---|---|
OPEN_WEATHER_API |
OpenWeather API key for weather data | β | abc123def456 |
GEMINI_API_KEY |
Google Generative AI API key | β | AIzaXxxx... |
.env example:
OPEN_WEATHER_API=your_openweather_api_key_here
GEMINI_API_KEY=your_gemini_api_key_here
β οΈ Never commit.envto version control. Add it to.gitignore.
- Build the projects:
npm run build- Start the agent:
npm start- Invoke the agent with a natural language query:
node apps/mcp-host/build/agent.js "What's the weather in New York?"Expected output:
# output
Connected to MCP server
[Gemini response with weather information for New York]| Script | Command | Description |
|---|---|---|
build |
npm run build:server && npm run build:host |
Compile both MCP server and host |
build:server |
tsc -p apps/mcp-server |
Compile MCP server TypeScript to JavaScript |
build:host |
tsc -p apps/mcp-host |
Compile agent host TypeScript to JavaScript |
start |
node apps/mcp-host/build/agent.js |
Run the AI agent |
dev |
npm run build && npm start |
Build and run in one command |
Contributions are welcome! This project is open to community input and improvements.
Getting Started:
- Fork the repository
- Create a feature branch:
git checkout -b feat/your-feature(orfix/,docs/,chore/as needed) - Make your changes and commit:
git commit -m "description of changes" - Push to your fork:
git push origin your-branch-name - Open a pull request with a description of your changes
Guidelines (non-strict):
- Keep commits logically organized and descriptive
- Add tests if you're adding new functionality
- Update documentation if your changes affect the API or usage
- Be respectful and collaborative in discussions
All contribution levels are welcome β from typo fixes to new features!
Distributed under the MIT License. See LICENSE for more information.