mesoscale_discussions
Pack: noaa-spc · Endpoint: https://gateway.pipeworx.io/noaa-spc/mcp
Recent mesoscale discussions list (as text page).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | number | no |
Example call
Arguments
{
"limit": 10
}
curl
curl -X POST https://gateway.pipeworx.io/noaa-spc/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"mesoscale_discussions","arguments":{"limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('mesoscale_discussions', {
"limit": 10
});
Response shape
Always returns: format, body
| Field | Type | Description |
|---|---|---|
format | string | Response format |
body | string | HTML content of recent mesoscale discussions (max 30000 chars) |
Full JSON Schema
{
"type": "object",
"properties": {
"format": {
"type": "string",
"enum": [
"html"
],
"description": "Response format"
},
"body": {
"type": "string",
"description": "HTML content of recent mesoscale discussions (max 30000 chars)"
}
},
"required": [
"format",
"body"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"noaa-spc": {
"url": "https://gateway.pipeworx.io/noaa-spc/mcp"
}
}
}
See Getting Started for client-specific install steps.