create_protocol
Create new scientific protocols with title and description for sharing research methods on protocols.io, after reviewing existing protocols for reference.
Instructions
Create a new protocol with the given title and description.
Before creating a new protocol, ensure you have searched for at least 2 relevant public protocols using search_public_protocols and reviewed their detailed steps with get_protocol_steps for reference when adding steps.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | Description of the new protocol (plain text only) | |
title | Yes | Title of the new protocol (plain text only) |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Description of the new protocol (plain text only)",
"title": "Description",
"type": "string"
},
"title": {
"description": "Title of the new protocol (plain text only)",
"title": "Title",
"type": "string"
}
},
"required": [
"title",
"description"
],
"type": "object"
}