weather-mcp
0
The Weather MCP is a server project designed to facilitate real-time data streaming with an SSE server and command-based interactions through a Stdio server. It requires configuration for client connections.
weather mcp
To install dependencies:
bun install
SSE Server
Run Server
bun run src/mcp/sse-server.ts
Client Config
{
"url" : "http://localhost:3000/sse"
}
Stdio Server
Client Config
{
"command" : "bun",
"args": [
"run",
"<path>/src/mcp/stdio-server.ts"
]
}