mcp-openweathermap
Version:
MCP server for OpenWeatherMap API integration
27 lines • 568 B
JSON
{
"mcpServers": {
"openweathermap": {
"command": "bun",
"args": ["--env-file=.env", "./src/main.ts"],
"env": {
"MCP_TRANSPORT": "stdio"
}
},
"openweathermap-built": {
"command": "node",
"args": ["./dist/main.js"],
"env": {
"MCP_TRANSPORT": "stdio"
}
},
"openweathermap-http": {
"command": "bun",
"args": ["--env-file=.env", "./src/main.ts"],
"env": {
"MCP_TRANSPORT": "httpStream",
"PORT": "3001",
"MCP_ENDPOINT": "/mcp"
}
}
}
}