standing_intent
ActiveTool of cloud.dchub/mcp-server
STANDING QUERIES with webhook push — register an intent once and DC Hub POSTs an HMAC-signed webhook to YOUR https URL whenever matches grow (push, not poll: "notify my orchestrator on any new deal in Columbus"). Requires a key. Params: action ("register" default | "list" | "delete"), kind ("new_deal_in_market" watches deals in params market · "news_keyword" watches news matching q · "permitting_change" watches published permitting intel, optionally per state), market / q / state (the watch parameter for the chosen kind), webhook_url (public HTTPS only — private/internal hosts rejected), intent_id (for delete). Register returns {intent_id, secret} — SAVE the secret: every delivery carries X-DCHub-Signature: sha256=HMAC(secret, body). First evaluation initializes the watermark silently; growth fires the webhook; 5 straight delivery failures auto-disable the intent. Evaluated every ~2h. Try: standing_intent kind=news_keyword q=moratorium webhook_url=https://hooks.example.com/dchub. Do NOT use for one-shot reads (use get_news / list_transactions) or email alerts (use set_market_alert); this is machine-to-machine push.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"q": {
"type": "string",
"description": "For news_keyword: the keyword/phrase to watch in title+summary, e.g. moratorium"
},
"kind": {
"type": "string",
"description": "Watch kind: \"new_deal_in_market\" | \"news_keyword\" | \"permitting_change\""
},
"state": {
"type": "string",
"description": "For permitting_change: optional US state filter, e.g. MN"
},
"action": {
"type": "string",
"description": "\"register\" (default), \"list\" (your intents), or \"delete\" (needs intent_id)"
},
"market": {
"type": "string",
"description": "For new_deal_in_market: the market/region substring to watch, e.g. columbus"
},
"intent_id": {
"type": "string",
"description": "The intent_id to delete (from register/list)"
},
"webhook_url": {
"type": "string",
"description": "Your public HTTPS webhook endpoint (required for register)"
}
}
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
cloud.dchub/mcp-server
https://github.com/azmartone67/dchub-backend
1/7 registries