/storerocket | Type: Application | PCID required: Yes
Tools
| Tool | Description |
|---|---|
storerocket_create_location | Create a location |
storerocket_delete_location | Delete a location |
storerocket_get_location | Get a location |
storerocket_get_user | Get authenticated user |
storerocket_list_locations | List all locations |
storerocket_list_users | List all users |
storerocket_update_location | Update a location |
storerocket_create_location
Create a location Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
address | string | No | — | Street address of the location. |
address_2 | string | No | — | Secondary address line (suite, unit, etc.). |
city | string | No | — | City of the location. |
country | string | No | — | Country of the location. |
description | string | No | — | Description or notes about the location. |
email | string | No | — | Email address for the location. |
lat | number | No | — | Latitude coordinate. |
lng | number | No | — | Longitude coordinate. |
name | string | Yes | — | Name of the store location. |
phone | string | No | — | Phone number for the location. |
state | string | No | — | State or province of the location. |
tags | string | No | — | Comma-separated list of tags for the location. |
website | string | No | — | Website URL for the location. |
zip | string | No | — | Postal or ZIP code. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"address": {
"type": "string",
"description": "Street address of the location."
},
"address_2": {
"type": "string",
"description": "Secondary address line (suite, unit, etc.)."
},
"city": {
"type": "string",
"description": "City of the location."
},
"country": {
"type": "string",
"description": "Country of the location."
},
"description": {
"type": "string",
"description": "Description or notes about the location."
},
"email": {
"type": "string",
"description": "Email address for the location."
},
"lat": {
"type": "number",
"description": "Latitude coordinate."
},
"lng": {
"type": "number",
"description": "Longitude coordinate."
},
"name": {
"type": "string",
"description": "Name of the store location."
},
"phone": {
"type": "string",
"description": "Phone number for the location."
},
"state": {
"type": "string",
"description": "State or province of the location."
},
"tags": {
"type": "string",
"description": "Comma-separated list of tags for the location."
},
"website": {
"type": "string",
"description": "Website URL for the location."
},
"zip": {
"type": "string",
"description": "Postal or ZIP code."
}
},
"required": [
"PCID",
"name"
]
}
storerocket_delete_location
Delete a location Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | integer | Yes | — | The ID of the location to delete. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "integer",
"description": "The ID of the location to delete."
}
},
"required": [
"PCID",
"id"
]
}
storerocket_get_location
Get a location Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | integer | Yes | — | The ID of the location to retrieve. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "integer",
"description": "The ID of the location to retrieve."
}
},
"required": [
"PCID",
"id"
]
}
storerocket_get_user
Get authenticated userShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
storerocket_list_locations
List all locations Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
limit | integer | No | — | Maximum number of locations to return per page. |
offset | integer | No | — | Number of locations to skip for pagination. |
search | string | No | — | Search term to filter locations by name, address, or other fields. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"limit": {
"type": "integer",
"description": "Maximum number of locations to return per page."
},
"offset": {
"type": "integer",
"description": "Number of locations to skip for pagination."
},
"search": {
"type": "string",
"description": "Search term to filter locations by name, address, or other fields."
}
},
"required": [
"PCID"
]
}
storerocket_list_users
List all users Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
limit | integer | No | — | Maximum number of users to return per page. |
offset | integer | No | — | Number of users to skip for pagination. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"limit": {
"type": "integer",
"description": "Maximum number of users to return per page."
},
"offset": {
"type": "integer",
"description": "Number of users to skip for pagination."
}
},
"required": [
"PCID"
]
}
storerocket_update_location
Update a location Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | integer | Yes | — | The ID of the location to update. |
address | string | No | — | Street address of the location. |
address_2 | string | No | — | Secondary address line (suite, unit, etc.). |
city | string | No | — | City of the location. |
country | string | No | — | Country of the location. |
description | string | No | — | Description or notes about the location. |
email | string | No | — | Email address for the location. |
lat | number | No | — | Latitude coordinate. |
lng | number | No | — | Longitude coordinate. |
name | string | No | — | Name of the store location. |
phone | string | No | — | Phone number for the location. |
state | string | No | — | State or province of the location. |
tags | string | No | — | Comma-separated list of tags for the location. |
website | string | No | — | Website URL for the location. |
zip | string | No | — | Postal or ZIP code. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "integer",
"description": "The ID of the location to update."
},
"address": {
"type": "string",
"description": "Street address of the location."
},
"address_2": {
"type": "string",
"description": "Secondary address line (suite, unit, etc.)."
},
"city": {
"type": "string",
"description": "City of the location."
},
"country": {
"type": "string",
"description": "Country of the location."
},
"description": {
"type": "string",
"description": "Description or notes about the location."
},
"email": {
"type": "string",
"description": "Email address for the location."
},
"lat": {
"type": "number",
"description": "Latitude coordinate."
},
"lng": {
"type": "number",
"description": "Longitude coordinate."
},
"name": {
"type": "string",
"description": "Name of the store location."
},
"phone": {
"type": "string",
"description": "Phone number for the location."
},
"state": {
"type": "string",
"description": "State or province of the location."
},
"tags": {
"type": "string",
"description": "Comma-separated list of tags for the location."
},
"website": {
"type": "string",
"description": "Website URL for the location."
},
"zip": {
"type": "string",
"description": "Postal or ZIP code."
}
},
"required": [
"PCID",
"id"
]
}

