Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Hosted weather data MCP for discovery, validation, and OAuth-protected GribStream queries.

README.md

GribStream MCP

![MCP Badge](https://lobehub.com/mcp/gribstream-gribstream-mcp)

GribStream MCP is a hosted Model Context Protocol server for weather forecast data.

It helps AI agents discover GribStream datasets, resolve exact forecast variables and levels, validate request bodies, build runnable GribStream Weather API requests, and execute live read-only weather queries after OAuth authorization.

Official GribStream weather API homepage:

https://gribstream.com/

Hosted MCP endpoint:

https://gribstream.com/mcp

Use Cases

Use GribStream MCP when you want an AI tool to:

  • List public GribStream weather datasets.
  • Choose a forecast model for a region, horizon, or weather task.
  • Find exact variable selectors, levels, and aliases.
  • Build a /timeseries request for values by valid time.
  • Build a /runs request to compare forecasts across model runs.
  • Validate a GribStream API request before running it.
  • Execute live /timeseries or /runs queries after OAuth authorization.
  • Generate a copy-pasteable curl command for the GribStream Weather API.

The hosted MCP server exposes discovery, selector lookup, request building, and validation tools before OAuth. Live /timeseries and /runs query tools require OAuth. Tool descriptions begin with either NO AUTH / PUBLIC / READ-ONLY or AUTH REQUIRED / DATA QUERY so AI clients can route metadata tasks and live data-query tasks correctly. When a client connects through OAuth, GribStream asks the user to sign in and select an active GribStream API token. MCP access tokens are scoped to that selected API token, and the raw API token is not shown to the MCP client.

Connect

Use the hosted endpoint exactly as shown in any MCP client that supports remote Streamable HTTP:

https://gribstream.com/mcp

Do not include trailing punctuation in the URL.

Generic configuration shape:

{
  "mcpServers": {
    "gribstream": {
      "url": "https://gribstream.com/mcp"
    }
  }
}

LobeHub quick import configuration:

{
  "mcpServers": {
    "gribstream": {
      "type": "http",
      "url": "https://gribstream.com/mcp"
    }
  }
}

Some clients require an explicit transport field:

{
  "mcpServers": {
    "gribstream": {
      "type": "streamable-http",
      "url": "https://gribstream.com/mcp"
    }
  }
}

OAuth

OAuth is needed for live query tools. Most MCP clients should discover OAuth from the hosted endpoint automatically, either during connector setup or when the client requests authenticated tools. If a client asks for manual OAuth 2.0 fields, use:

Authorization URL: https://gribstream.com/authorize
Token URL: https://gribstream.com/token
Client ID: gribstream-mcp-public
Client Secret: leave empty; do not enter a value
Scopes: leave empty
Resource or audience, if requested: https://gribstream.com/mcp

OAuth discovery endpoints:

https://gribstream.com/.well-known/oauth-protected-resource/mcp
https://gribstream.com/.well-known/oauth-authorization-server

The OAuth client is public and uses PKCE with token_endpoint_auth_method set to none. Native desktop clients may use loopback redirect URIs such as http://localhost:{port}/..., http://127.0.0.1:{port}/..., or http://[::1]:{port}/.... A setup form that requires a non-empty client secret is asking for a confidential-client flow and is not compatible with this public MCP OAuth flow.

Server Features

LobeHub and other MCP crawlers may call MCP tools "skills". The live GribStream MCP server exposes the following skills/tools, prompts, and resources.

Skill List

| Name | Auth | Description | | --- | --- | --- | | gribstream_list_datasets | No auth, public, read-only | List public GribStream datasets and metadata. | | gribstream_get_dataset | No auth, public, read-only | Get full public metadata for one dataset code. | | gribstream_list_parameters | No auth, public, read-only | List parameter summaries for one dataset. | | gribstream_get_parameter | No auth, public, read-only | Get detailed metadata and exact selector variations for one dataset parameter. | | gribstream_list_shared_parameters | No auth, public, read-only | List normalized shared parameter presets. | | gribstream_resolve_shared_parameter | No auth, public, read-only | Resolve one shared parameter preset to native variables and expressions. | | gribstream_get_expression_reference | No auth, public, read-only | Get GribStream expression-language rules, examples, and math functions. | | gribstream_build_timeseries_request | No auth, public, read-only | Build and validate a copy-pasteable authenticated /timeseries API request without sending it. | | gribstream_build_runs_request | No auth, public, read-only | Build and validate a copy-pasteable authenticated /runs API request without sending it. | | gribstream_validate_request | No auth, public, read-only | Validate request shape, selector tuples, and expression syntax without querying weather values. | | gribstream_query_timeseries | OAuth required, data query | Execute an authenticated /timeseries request and return actual weather values. | | gribstream_query_runs | OAuth required, data query | Execute an authenticated /runs request and return actual weather values across model runs. |

Public read-only skills/tools are visible before OAuth. OAuth live query skills/tools may be hidden from tools/list until the client completes OAuth or sends a valid Authorization: Bearer token.

Prompt List

| Name | Description | | --- | --- | | build_gribstream_api_request | Turn a weather question into a validated GribStream /timeseries or /runs request and runnable curl. | | build_gfs_forecast_request | Create a validated GFS request for common forecast variables at points or grids. | | build_historical_forecast_request | Build a request for archived forecasts or forecasts selected by a model-run-time cutoff. | | create_grid_request | Create a GribStream request over a latitude/longitude grid instead of point coordinates. | | compare_forecast_runs | Build a /runs request to compare model forecasts across runs or lead times. | | choose_weather_dataset | Choose a GribStream dataset for a region, horizon, weather signal, or forecast task. | | find_weather_variable | Find the exact dataset parameter selectors for a weather signal. |

Resource List

| URI | MIME Type | Description | | --- | --- | --- | | gribstream://openapi | application/yaml | Machine-readable GribStream OpenAPI specification. | | gribstream://skill/gribstream-query | text/markdown | Vendor-neutral behavioral instructions for AI tools using GribStream. |

Live Query Output

Authenticated live query tools return CSV and NDJSON as typed inline MCP resources, not just plain prose.

  • structuredContent includes content_type, rows, bytes, columns, schema, preview, and row-ordering guidance.
  • Tabular results include suggested_filename, request_hash, response_hash, and result_hash. Use suggested_filename when saving multiple query results, especially for comparisons, to avoid overwriting earlier CSV or NDJSON files.
  • Rows are streamed from parallel extraction and are not guaranteed to be sorted. Sort by forecasted_time for /timeseries, and by forecasted_at plus forecasted_time for /runs, before plotting or comparing time series.

Links

  • Official GribStream weather API homepage: https://gribstream.com/
  • Endpoint: https://gribstream.com/mcp
  • MCP page: https://gribstream.com/mcp
  • Icon: https://gribstream.com/gribstream_small.png
  • OpenAPI: https://gribstream.com/docs/openapi.yaml
  • AI setup docs: https://gribstream.com/ai
  • API dashboard: https://gribstream.com/app/dashboard

Try It

After connecting GribStream MCP to an AI tool, ask:

Use GribStream MCP to build a GFS 2m temperature timeseries request for Houston for tomorrow at 12:00 UTC. Validate the request and return a runnable curl command.

If your client has completed OAuth, you can also ask it to run the query:

Use GribStream MCP to run a GFS 2m temperature timeseries query for Houston for tomorrow at 12:00 UTC and return CSV.

Or:

Use GribStream MCP to find the best dataset for short-range precipitation forecasts in the continental United States. Explain the tradeoffs and build a validated example request.

More examples:

For the GribStream API itself, see the OpenAPI specification.

![MCP Badge](https://lobehub.com/mcp/gribstream-gribstream-mcp)

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Maps & Location servers.