weather mcp logo

weather mcp

by vhxnif

weather mcp provides SSE and Stdio server implementations. It allows clients to connect and receive data using either Server-Sent Events or standard input/output streams.

View on GitHub

Last updated: N/A

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"
  ] 
}