get_vendor
Retrieve vendor details by specifying the vendor ID using the ShipHero MCP Server. Access essential vendor information for efficient inventory and order management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
vendor_id | Yes | The ID of the vendor to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"vendor_id": {
"description": "The ID of the vendor to retrieve",
"type": "string"
}
},
"required": [
"vendor_id"
],
"type": "object"
}