MCP Demo
Demonstrate an MCP server for fetching aviation weather data
Overview
MCP Demo is a project that demonstrates the functionality of an MCP server designed to fetch aviation weather data.
To use MCP Demo, set up the necessary dependencies, activate the virtual environment, and run the server using the provided commands.
- Demonstrates the use of an MCP server for aviation weather data retrieval. - Provides a clear example of how to set up and run the server locally.
- Fetching real-time aviation weather data for flight planning.
- Integrating aviation weather data into other applications.
- Demonstrating the capabilities of the MCP protocol in a practical scenario.
Add to your AI client
Use these steps to connect MCP Demo in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-demo-aviation-weather-mcdickenson": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-demo-aviation-weather-mcdickenson"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-demo-aviation-weather-mcdickenson": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-demo-aviation-weather-mcdickenson"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-demo-aviation-weather-mcdickenson": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-demo-aviation-weather-mcdickenson"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-demo-aviation-weather-mcdickenson": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-demo-aviation-weather-mcdickenson"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-demo-aviation-weather-mcdickenson": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-demo-aviation-weather-mcdickenson"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-demo-aviation-weather-mcdickenson": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-demo-aviation-weather-mcdickenson"
]
}
}
}FAQ
What is an MCP server?
An MCP server is a server that implements the Model Context Protocol, allowing for the retrieval and management of contextual data.
How do I set up the project locally?
Follow the instructions in the project documentation to install dependencies and run the server.
Is there a demo available?
Yes, the project includes a demo image showcasing the server in action.