> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# storerocket

> StoreRocket Store Locator

**Server path:** `/storerocket` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                          | Description            |
| ------------------------------------------------------------- | ---------------------- |
| [`storerocket_create_location`](#storerocket_create_location) | Create a location      |
| [`storerocket_delete_location`](#storerocket_delete_location) | Delete a location      |
| [`storerocket_get_location`](#storerocket_get_location)       | Get a location         |
| [`storerocket_get_user`](#storerocket_get_user)               | Get authenticated user |
| [`storerocket_list_locations`](#storerocket_list_locations)   | List all locations     |
| [`storerocket_list_users`](#storerocket_list_users)           | List all users         |
| [`storerocket_update_location`](#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.                            |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## storerocket\_delete\_location

Delete a location

**Parameters:**

| Parameter | Type    | Required | Default | Description                       |
| --------- | ------- | -------- | ------- | --------------------------------- |
| `id`      | integer | Yes      | —       | The ID of the location to delete. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## storerocket\_get\_location

Get a location

**Parameters:**

| Parameter | Type    | Required | Default | Description                         |
| --------- | ------- | -------- | ------- | ----------------------------------- |
| `id`      | integer | Yes      | —       | The ID of the location to retrieve. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## storerocket\_get\_user

Get authenticated user

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## 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. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## 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.     |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## 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.                            |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>
