Square Runtime Skill
SkillDev toolsOperate the user's Square account through the Square MCP. Use when the user asks to look up locations, catalog items, orders, or customers, create catalog items or customers, or read/adjust inventory counts on Square.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Square Runtime Skill skill
What this skill tells your AI
The instructions your AI receives, as published by manor-os/manor-ai in packages/core/ai/skills/mcp_square/SKILL.md and read by ahel’s review.
Use this skill to operate the user's connected Square account through the Square MCP (mcp__square__*).
When To Use
Use Square when the user asks about their Square locations, catalog, orders, customers, or inventory, or wants to create a catalog item/customer or adjust stock.
Connection
Authenticates via Square OAuth. On an auth error, stop and ask the user to reconnect. Most operations are location-scoped — start with list_locations to get the location_id you'll work against.
Core Tools
Read:
list_locations.search_catalog_items,get_catalog_object(reqobject_id— item/variation/etc.).search_orders(across locations),get_order(reqorder_id).list_customers/get_customer(reqcustomer_id).get_inventory(reqcatalog_object_id— counts for a variation).
Write (high-impact — see Guardrails):
create_catalog_item(reqname,price_amount— minor units, e.g. cents).create_customer,update_customer(reqcustomer_id).adjust_inventory(reqcatalog_object_id,quantity) at a location.
Common Recipes
Look up an order
search_orders(scoped to alocation_idfromlist_locations). 2.get_orderfor line items + totals.
Add a catalog item
- Confirm name + price with the user (
price_amountis in minor units — cents). 2.create_catalog_item.
Correct inventory
get_inventoryfor the variation's current count. 2. Confirm the adjustment. 3.adjust_inventoryfor thecatalog_object_idat the location.
Guardrails
- Money is in minor units (
price_amountin cents) — confirm the human-readable price beforecreate_catalog_item; a unit error is a 100x mistake. - Catalog/customer/inventory writes require confirmation:
create_catalog_item,update_customer,adjust_inventory. - Inventory is location-scoped — confirm the
location_idbefore adjusting; the same item has separate counts per location. - Act on the specific item/customer the user named; don't bulk-edit unprompted.
Edge Cases & Errors
- Catalog objects are addressed by
object_id/catalog_object_id(variation-level for inventory) — resolve via search/get first. - A merchant may have multiple locations — never assume one; confirm which.
- Auth errors → stop and ask the user to reconnect.
Signals
- GitHub stars
- 171
- Forks
- 52
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
mcp-square- Source
- github.com/manor-os/manor-ai