Open Context Protocol is live! 🚀 Read the launch post

gistsDelete

Delete a gist

Details

  • Method: DELETE
  • Path: /gists/{gist_id}
  • Operation ID: gists/delete

Parameters

{
  "gist_id": {
    "description": "The unique identifier of the gist.",
    "required": true,
    "location": "path",
    "type": "string"
  }
}

Usage

from ocp_agent import OCPAgent

agent = OCPAgent()
await agent.register_api('github')

# Call this tool
result = await agent.call_tool('gistsDelete', {
    # Add required parameters here
})