| Tool Name: | gridJobResult |
| Asset Name: | Grid Job Result |
| Description: | Wait for a Covia grid job to finish and return its output |
| Adapter: | grid |
| Asset Hash: | 0xc511c3ecdafab10bfcf6d4f9cfaecf320d43a9b5db21409ef2a91e93dc1eaa82 |
| Property | Type | Description |
|---|---|---|
venue | string | Optional remote venue URL or DID to query |
id* | string | Job identifier returned from a previous grid invocation |
Type: any
Schema: <code>{ "type": "any", "description": "Output value of the referenced job" }</code>
This tool can be called via the MCP (Model Context Protocol) endpoint. Here are examples of how to use it:
POST to https://mcp-1st-birthday-agentic-economics.hf.space/mcp
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "gridJobResult",
"arguments": {
"input": "your input here"
}
}
}curl -X POST https://mcp-1st-birthday-agentic-economics.hf.space/mcp \\
-H "Content-Type: application/json" \\
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "gridJobResult",
"arguments": {
"input": "your input here"
}
}
}'import requests
import json
url = "https://mcp-1st-birthday-agentic-economics.hf.space/mcp"
payload = {
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "gridJobResult",
"arguments": {
"input": "your input here"
}
}
}
response = requests.post(url, json=payload)
result = response.json()
print(result)const fetch = require('node-fetch');
const url = 'https://mcp-1st-birthday-agentic-economics.hf.space/mcp';
const payload = {
jsonrpc: '2.0',
id: 1,
method: 'tools/call',
params: {
name: 'gridJobResult',
arguments: {
input: 'your input here'
}
}
};
fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(payload)
})
.then(response => response.json())
.then(data => console.log(data));{
"name": "Grid Job Result",
"description": "Wait for a Covia grid job to finish and return its output",
"operation": {
"adapter": "grid:jobResult",
"toolName": "gridJobResult",
"input": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Job identifier returned from a previous grid invocation"
},
"venue": {
"type": "string",
"description": "Optional remote venue URL or DID to query"
}
},
"required": ["id"]
},
"output": {
"type": "any",
"description": "Output value of the referenced job"
}
}
}