
MCP Weather Server
A Model Context Protocol server that provides real-time weather data and forecasts for any city.
README
MCP Data Server �
A comprehensive Model Context Protocol (MCP) server that provides various data services, starting with real-time weather data and designed for easy extension to other data sources.
🚀 Features
- Modular Architecture: Easy to extend with new data services
- Real-time Weather Data: Get current weather conditions for any city
- MCP Protocol Compliance: Fully compatible with the Model Context Protocol
- TypeScript Support: Written in TypeScript for better type safety
- Stdio Transport: Uses standard input/output for communication
- Extensible Design: Ready for news, finance, sports, and other data services
📋 Prerequisites
- Node.js (v18 or higher)
- npm or yarn package manager
- TypeScript support
🛠️ Installation
- Clone the repository:
git clone https://github.com/ParthibanRajasekaran/mcp-weather.git
cd mcp-weather
- Install dependencies:
npm install
- Build the project (optional):
npm run build
🎯 Usage
Running the Server
Development Mode
npm run dev
Production Mode
npm run build
npm start
MCP Configuration
Add the following configuration to your MCP client's configuration file (.vscode/mcp.json
):
{
"servers": {
"mcp-data-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"tsx",
"src/main.ts"
]
}
}
}
🔧 Available Services
Weather Service
getWeather
Get current weather data for a specified city.
Parameters:
city
(string): The name of the city to get weather for
Example Usage:
// MCP client call
const weather = await mcpClient.callTool("getWeather", { city: "London" });
Response Format:
{
"latitude": 51.51147,
"longitude": -0.13078308,
"current": {
"time": "2025-07-08T06:15",
"temperature_2m": 13.9,
"apparent_temperature": 11,
"is_day": 1,
"rain": 0
},
"hourly": {
"time": [...],
"temperature_2m": [...]
}
}
🔮 Future Services (Planned)
- News Service: Get latest news from various sources
- Finance Service: Stock prices, market data, cryptocurrency
- Sports Service: Live scores, team statistics, schedules
- Social Media Service: Trending topics, social metrics
- Maps Service: Location data, directions, places
🏗️ Architecture
Project Structure
mcp-weather/
├── src/
│ ├── main.ts # Main server entry point
│ ├── services/ # Data service implementations
│ │ └── weather.ts # Weather service
│ ├── types/ # TypeScript type definitions
│ │ ├── weather.ts # Weather-related types
│ │ └── service.ts # Base service interfaces
│ └── utils/ # Utility functions
│ └── registry.ts # Service registry
├── .vscode/
│ └── mcp.json # MCP client configuration
├── package.json # Project dependencies and scripts
├── tsconfig.json # TypeScript configuration
└── README.md # This file
Transport Layer
The server uses StdioServerTransport for communication:
- Input: Standard input (stdin)
- Output: Standard output (stdout)
- Protocol: JSON-RPC over stdio
- Benefits: Simple, reliable, and widely supported
Service Architecture
Each service follows this pattern:
// 1. Define types
interface ServiceInput { /* ... */ }
interface ServiceOutput { /* ... */ }
// 2. Create service class
class MyService {
async getData(input: ServiceInput): Promise<string> {
// Implementation
}
}
// 3. Register with MCP server
server.tool("myTool", "Description", schema, handler);
🤖 AI Assistant Integration
Claude Desktop (Available Now)
Your MCP server works with Claude Desktop out of the box! See docs/AI_INTEGRATION.md
for setup instructions.
GitHub Copilot (Coming Soon)
GitHub Copilot doesn't support MCP yet, but your server is ready! See docs/GITHUB_COPILOT_INTEGRATION.md
for:
- Current workarounds using VS Code extensions
- What to expect when MCP support is added
- Example integration patterns
VS Code Extension Example
Check out examples/vscode-extension/
for a working example that integrates your MCP server with VS Code today!
🔍 MCP Inspector Integration
For debugging and development, you can use the MCP Inspector:
- Install the MCP Inspector:
npm install -g @modelcontextprotocol/inspector
- Run the inspector:
npx @modelcontextprotocol/inspector npx tsx src/main.ts
- Open the inspector in your browser at
http://localhost:5173
🧪 Development
Adding New Services
- Create Type Definitions (
src/types/myservice.ts
):
export interface MyServiceInput {
query: string;
}
export const MyServiceSchema = z.object({
query: z.string().describe("Your query parameter")
});
- Implement Service (
src/services/myservice.ts
):
export class MyService {
async getData(input: MyServiceInput): Promise<string> {
// Your implementation
return "Service response";
}
}
- Register Tool (in
src/main.ts
):
server.tool(
"myTool",
"Description of my tool",
MyServiceSchema,
async ({ query }: { query: string }) => {
const result = await myService.getData({ query });
return {
content: [{ type: "text", text: result }]
};
}
);
Development Scripts
npm run dev
- Run in development mode with hot reloadnpm run build
- Build the TypeScript projectnpm start
- Run the built projectnpm test
- Run tests (when implemented)
🌐 API Details
Weather Service API
- Geocoding:
https://geocoding-api.open-meteo.com/v1/search
- Weather:
https://api.open-meteo.com/v1/forecast
- Rate Limit: Free tier, no authentication required
- Model: UKMO Seamless (UK Met Office)
🤝 Contributing
We welcome contributions for new data services! Here's how:
- Fork the repository
- Create a feature branch:
git checkout -b feature/new-service
- Add your service following the architecture above
- Add tests and documentation
- Commit your changes:
git commit -m 'Add new service'
- Push to the branch:
git push origin feature/new-service
- Open a Pull Request
Service Guidelines
- Each service should be self-contained in its own file
- Use TypeScript for type safety
- Include proper error handling
- Add JSDoc comments for public methods
- Follow the existing code style
📄 License
This project is licensed under the ISC License - see the LICENSE file for details.
🙏 Acknowledgments
- Model Context Protocol for the protocol specification
- Open-Meteo for the free weather API
- TypeScript for type safety
📞 Support
If you encounter any issues or have questions:
- Check the Issues page
- Create a new issue with detailed information
- Contact: rajasekaran.parthiban7@gmail.com
🔄 Changelog
v1.0.0
- Initial release with weather service
- Modular architecture for easy extension
- MCP protocol compliance
- TypeScript implementation
- Stdio transport support
Made with ❤️ by ParthibanRajasekaran | Ready for extension to any data service! const server = new McpServer({ name: "MCP Weather Server", version: "1.0.0", description: "A server that provides weather data" });
## 🔧 Tools Available
### `getWeather`
Retrieves current weather conditions and forecasts for a specified city.
**Parameters:**
- `city` (string): The name of the city to get weather data for
**Returns:**
- Current temperature, apparent temperature, and conditions
- Hourly temperature forecast for the next 7 days
- Location coordinates and timezone information
**Example Usage:**
```typescript
// Through MCP client
const weatherData = await mcpClient.callTool("getWeather", { city: "London" });
📁 Project Structure
mcp-weather/
├── .vscode/
│ └── mcp.json # MCP server configuration
├── weather/
│ └── main.ts # Main server implementation
├── package.json # Dependencies and scripts
├── tsconfig.json # TypeScript configuration
└── README.md # This file
🔍 MCP Inspector Integration
To use with the MCP Inspector for debugging and development:
- Configure MCP Client: Add the server to your MCP configuration file (
.vscode/mcp.json
):
{
"servers": {
"my-weather-server": {
"type": "stdio",
"command": "npx",
"args": ["-y", "tsx", "weather/main.ts"]
}
}
}
-
Launch Inspector: The server can be inspected using MCP-compatible tools and inspectors.
-
Debug Mode: Use the development server for real-time debugging:
npm run dev
🌐 API Integration
The server integrates with two Open-Meteo APIs:
Geocoding API
- Endpoint:
https://geocoding-api.open-meteo.com/v1/search
- Purpose: Convert city names to coordinates
- Features: Multi-language support, fuzzy matching
Weather API
- Endpoint:
https://api.open-meteo.com/v1/forecast
- Purpose: Retrieve weather data using coordinates
- Model: UK Met Office Seamless model (
ukmo_seamless
) - Data: Current conditions + hourly forecasts
🛠️ Development
Available Scripts
# Development server with hot reload
npm run dev
# Build TypeScript to JavaScript
npm run build
# Start production server
npm start
# Run tests
npm test
Adding New Features
- New Tools: Add tools to the server using the
server.tool()
method - Enhanced Data: Extend the weather API calls to include more parameters
- Error Handling: Improve error handling for edge cases
🌍 Usage Examples
Basic Weather Query
// Get weather for London
const result = await getWeather({ city: "London" });
// Current conditions
console.log(`Temperature: ${result.current.temperature_2m}°C`);
console.log(`Feels like: ${result.current.apparent_temperature}°C`);
console.log(`Rain: ${result.current.rain}mm`);
Multi-City Comparison
const cities = ["London", "Paris", "New York", "Tokyo"];
const weatherData = await Promise.all(
cities.map(city => getWeather({ city }))
);
🔐 Error Handling
The server includes comprehensive error handling:
- Invalid Cities: Returns helpful error messages for non-existent cities
- API Failures: Graceful handling of network issues
- Data Validation: Input validation using Zod schemas
📊 Data Schema
Current Weather Response
interface WeatherResponse {
latitude: number;
longitude: number;
timezone: string;
current: {
time: string;
temperature_2m: number;
apparent_temperature: number;
is_day: number;
rain: number;
};
hourly: {
time: string[];
temperature_2m: number[];
};
}
🤝 Contributing
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
📝 License
This project is licensed under the ISC License - see the LICENSE file for details.
🙏 Acknowledgments
- Open-Meteo for providing free weather data
- Model Context Protocol for the MCP specification
- UK Met Office for the weather model data
📞 Support
For questions or issues:
- Create an issue on GitHub
- Check the MCP Documentation
Built with ❤️ using the Model Context Protocol
推荐服务器

Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。