FastPospal
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| POSPAL_ACCOUNT | Yes | Your PosPal account | |
| POSPAL_PASSWORD | Yes | Your PosPal password |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| pospal_session_infoA | 查看当前银豹登录会话(门店子域、userId、是否有效)。 |
| pospal_loginA | 强制重新登录银豹云后台,刷新会话 cookie。 |
| pospal_list_categoriesA | 获取商品分类树(JSON)。 |
| pospal_create_categoryA | 【写】创建商品分类。parent_name 为空则创建顶级分类。 |
| pospal_update_categoryC | 【写】重命名分类。 |
| pospal_delete_categoriesB | 【写】批量删除分类(category_uids 为 uid 字符串列表)。 |
| pospal_product_summaryC | 商品数量统计。keyword 支持条码/名称/拼音码。 |
| pospal_list_productsC | 分页查询商品列表(HTML 解析为结构化数据)。 |
| pospal_get_productC | 按 productId 获取商品详情 JSON。 |
| pospal_find_product_by_barcodeB | 按条码查商品详情。 |
| pospal_create_productC | 【写】创建测试商品。barcode 为空则自动生成;category_uid 为空则用第一个分类。 |
| pospal_update_productA | 【写】更新商品字段(仅传需要修改的字段)。 |
| pospal_delete_productA | 【写】删除商品(不可恢复,仅测试账号使用)。 |
| pospal_find_customerB | 按会员卡号/手机号查会员详情 JSON。 |
| pospal_list_customersB | 分页查会员列表。customer_type: 1=启用, 0=禁用, 2=过期。 |
| pospal_get_customer_extrasC | 查会员附属信息:次卡、权益卡、购物卡、优惠券。 |
| pospal_create_customerC | 【写】创建会员。number 为会员卡号(删除后不可复用)。 |
| pospal_update_customerC | 【写】更新会员资料。余额/积分修改需门店开启 editMoneyPoint 权限。 |
| pospal_delete_customerB | 【写】软删除会员(enable=-1,卡号不可复用)。 |
| pospal_list_stockC | 分页查库存列表(全店商品库存汇总)。 |
| pospal_stock_change_historyC | 查指定商品条码的库存变更流水。 |
| pospal_list_stock_flowsB | 分页查货流单(进货/出库/调拨)列表。 |
| pospal_set_product_stock_limitA | 【写】设置商品库存上下限(不直接改库存数量)。 |
| pospal_list_suppliersB | 获取供应商下拉列表(JSON)。 |
| pospal_list_ticketsC | 分页查销售单据。ticket_type: 0=有效, 1=作废, 4=退货, 2=会员, 3=批发。 |
| pospal_list_eshop_ordersC | 分页查自营网单。 |
| pospal_list_product_purchasesC | 分页查采购单。 |
| pospal_openapi_statusB | 检查银豹官方开放平台 appId/appKey 是否已配置。 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 28 tools
Each tool targets a distinct entity and action (e.g., create vs. list vs. delete for categories, customers, products). There is no overlap in functionality; even search tools are differentiated by query parameters (barcode vs. customer number).
Most tools follow the pospal_verb_noun pattern (e.g., pospal_create_category, pospal_list_products), but a few deviate (pospal_login, pospal_openapi_status, pospal_session_info) breaking the pattern slightly.
28 tools cover a wide range of POS operations (categories, customers, products, stock, orders, tickets, suppliers) without being excessive. Each tool serves a clear purpose and the count is appropriate for the domain.
The tool set provides CRUD for core entities (categories, customers, products) and read-only access for orders, purchases, stock, and tickets. Missing create operations for some entities (e.g., suppliers, purchase orders) are minor gaps that agents can work around.