Open Context Protocol is live! 🚀 Read the launch post
projectsDeleteItemForUser

projectsDeleteItemForUser

Delete project item for user

Details

  • Method: DELETE
  • Path: /users/{username}/projectsV2/{project_number}/items/{item_id}
  • Operation ID: projects/delete-item-for-user

Parameters

{
  "project_number": {
    "description": "The project's number.",
    "required": true,
    "location": "path",
    "type": "integer"
  },
  "username": {
    "description": "The handle for the GitHub user account.",
    "required": true,
    "location": "path",
    "type": "string"
  },
  "item_id": {
    "description": "The unique identifier of the project item.",
    "required": true,
    "location": "path",
    "type": "integer"
  }
}

Usage

from ocp_agent import OCPAgent

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

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