Skip to main content
POST
/
mcp
/
tool
/
delete_session_data
Delete Session Data
curl --request POST \
  --url http://localhost:8080/mcp/tool/delete_session_data \
  --header 'Content-Type: application/json' \
  --data '{
  "session_id": "",
  "group_id": ""
}'
{
  "status": "success"
}

Body

application/json

Request body for deleting memory data associated with a context.

session_id
string
default:""
required

The unique session identifier.

group_id
string
default:""

The group identifier.

Response

200 - application/json

Data deletion request accepted.

Generic response indicating the status of an asynchronous operation.

status
string
required

The status of the operation (e.g., 'success', 'accepted', 'failure').

Example:

"success"