PVGIS MCP
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@PVGIS MCPestimate yearly solar output for a 4 kW system at 48.8566, 2.3522"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
PVGIS MCP — Cloudflare Worker
Remote MCP server che stima la produzione fotovoltaica di un impianto via PVGIS (Photovoltaic Geographical Information System, Commissione Europea / JRC). Gira dentro Cloudflare (serverless, sempre acceso, niente Mac acceso).
Questo connettore è usato dal plugin valutazione-fv del marketplace AI, MAX Plugins — materiale didattico dei workshop AI, MAX. La skill recupera da qui la produzione reale di un tetto e la passa al suo script di calcolo ROI.
API PVGIS: pubblica, gratuita, senza key. Worker su Cloudflare: free tier (100.000 richieste/giorno incluse) — costo atteso €0.
Endpoint MCP una volta deployato: https://<worker>.workers.dev/mcp
Tool esposti
pv_production(lat, lon, peakpower_kwp, angle=30, aspect=0, loss=14) → produzione annua + mensile, irraggiamento.monthly_radiation(lat, lon, angle=30, aspect=0) → irraggiamento mensile.
aspect: 0 = SUD, -90 = est, 90 = ovest.angle: inclinazione falda in gradi.
Related MCP server: MCP Server Template (Minimal)
Deploy — via GitHub (consigliato)
Questo è il contenuto del repo github.com/maxturazzini/pvgis-mcp.
Su Cloudflare: Workers & Pages → Create → Workers → Connect GitHub → seleziona
pvgis-mcp.Cloudflare rileva
wrangler.jsonc, installa le dipendenze e fa il build/deploy.Ad ogni
git pushsumain→ deploy automatico.URL finale:
https://pvgis-mcp.<tuo-subdominio>.workers.dev
Deploy — via CLI (alternativa)
cd worker-cloudflare
npm install
npx wrangler login # apre il browser, autorizza
npx wrangler deploy # stampa l'URL del workerCollegare a Claude.ai
Claude.ai → Impostazioni → Connettori → Aggiungi connettore personalizzato (BETA):
Nome:
PVGISURL del server MCP remoto:
https://pvgis-mcp.<tuo-subdominio>.workers.dev/mcpOAuth: lasciare vuoto (il server è pubblico, no-auth).
Aggiungi.
Poi in chat attiva il connettore PVGIS e chiedi la produzione di un tetto date le coordinate.
Test rapido dopo il deploy
# health check
curl https://pvgis-mcp.<tuo-subdominio>.workers.dev/
# handshake MCP (atteso: 200 + serverInfo "pvgis")
curl -sL -X POST https://pvgis-mcp.<tuo-subdominio>.workers.dev/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"probe","version":"1"}}}'Note
No-auth: chiunque conosca l'URL può usarlo. Per un tool read-only su dati pubblici (PVGIS) è accettabile; se vuoi limitarlo, si aggiunge OAuth (Workers OAuth Provider) — non incluso qui per semplicità.
Geocoding: PVGIS prende coordinate, non indirizzi. Per accettare un indirizzo serve un geocoder a monte (es. Nominatim/OSM, libero). Non incluso: lo si può aggiungere come terzo tool.
La versione Python stdio (
../server.py) resta per Claude Desktop; la versione tunnel (../server_http.py+../run_tunnel.sh) resta come alternativa locale.
This server cannot be deployed
Maintenance
Related MCP Connectors
Cloudflare Workers MCP server: ai-cost-optimizer
Cloudflare Workers MCP server: ai-model-router
Cloudflare Workers MCP server: api-mock-server
Cloudflare Workers MCP server: ai-gateway
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceA deployable MCP server on Cloudflare Workers that allows you to create and expose custom tools to AI assistants without requiring authentication.-
- FlicenseNot gradedqualityDmaintenanceA minimal MCP server template that runs on Cloudflare Workers + TypeScript, enabling quick creation of tools like calculations, API wrappers, and static data endpoints.8 npm-
- FlicenseNot gradedqualityDmaintenanceA universal MCP server providing calculator and API calling tools, deployable on Cloudflare Workers.-
- FlicenseNot gradedqualityDmaintenanceA remote MCP server deployed on Cloudflare Workers that provides Cloudflare observability tools (zone analytics, workers analytics, web analytics) and basic calculator functions, without requiring authentication.-