Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PROTOCOLS_IO_CLIENT_ACCESS_TOKEN | Yes | Your protocols.io API access token |
Schema
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_public_protocols | Search for public protocols on protocols.io using a keyword. Results are sorted by protocol popularity and paginated with 3 protocols per page (use the page parameter to navigate, default is 1). When searching for reference protocols to create a new protocol:
|
| get_my_protocols | Retrieve basic information for all protocols belonging to the current user. To get detailed protocol steps, use get_protocol_steps. |
| get_protocol | Retrieve basic information for a specific protocol by its protocol ID. To get detailed protocol steps, use get_protocol_steps. |
| get_protocol_steps | Retrieve the steps for a specific protocol by its protocol ID. |
| create_protocol | 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. |
| update_protocol_title | Update the title of an existing protocol by its protocol ID. |
| update_protocol_description | Update the description of an existing protocol by its protocol ID. |
| set_protocol_steps | Replace the entire steps list of a specific protocol by its protocol ID with a new steps list. The existing steps will be completely overwritten. |
| add_protocol_step | Add a step to the end of the steps list for a specific protocol by its protocol ID. |
| delete_protocol_step | Delete a specific step from a protocol by providing both the protocol ID and step ID. |