close_market
Shut down a market for trading by specifying the market ID and optional close time, ensuring no further bets are placed. Part of the Manifold Markets MCP Server.
Instructions
Close a market for trading
Input Schema
Name | Required | Description | Default |
---|---|---|---|
closeTime | No | Optional. Unix timestamp in milliseconds when market will close | |
contractId | Yes | Market ID |
Input Schema (JSON Schema)
{
"properties": {
"closeTime": {
"description": "Optional. Unix timestamp in milliseconds when market will close",
"type": "number"
},
"contractId": {
"description": "Market ID",
"type": "string"
}
},
"required": [
"contractId"
],
"type": "object"
}