Be Sew Bizzy
Search Be Sew Bizzy's quilt fabrics and sewing supplies: prices, sales, stock, classes and hours.
Should I use this
Quality & Safety
Findings (1)
- LOWin fetch
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"shop": {
"url": "https://besewbizzy.com/api/mcp"
}
}
}Remote endpoints
https://besewbizzy.com/api/mcpstreamable-httpWhat it can do
Tool inventory
Tools (6)
🟢search(query)
Search Be Sew Bizzy's products (quilt fabric, notions, patterns, embroidery supplies) by name, maker, collection, color or SKU. Returns ids to pass to fetch for price, sale, stock and colors.
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "e.g. \"riley blake stripe\", \"magic dot raspberry\", \"kona black\""
}
},
"required": [
"query"
],
"additionalProperties": false
}🟢fetch(id)
Full details of one product by the id search returned: price, sale price, per-yard or each, stock, every color and the description.
Input Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "An id from search results"
}
},
"required": [
"id"
],
"additionalProperties": false
}🟢search_products(query, limit)
Search the shop's products by name, maker, collection, color or SKU — every word must match. Returns price, sale price, whether it's per yard, stock, colors and the product url.
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "e.g. \"riley blake stripe\", \"magic dot raspberry\", \"kona black\", \"5230-33\""
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 25,
"default": 10
}
},
"required": [
"query"
],
"additionalProperties": false
}🟢get_product(slug)
One product by its slug (from search results): description, price, sale price, and every color with its SKU and stock.
Input Schema
{
"type": "object",
"properties": {
"slug": {
"type": "string",
"description": "The product's slug, e.g. \"moda-magic-dot\""
}
},
"required": [
"slug"
],
"additionalProperties": false
}🟢list_classes(days, query, limit)
Upcoming class and event sessions at the shop, soonest first, with date, time, price, instructor and url.
Input Schema
{
"type": "object",
"properties": {
"days": {
"type": "integer",
"minimum": 1,
"maximum": 365,
"default": 60,
"description": "How many days ahead to look."
},
"query": {
"type": "string",
"description": "Words the class title must contain."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 50,
"default": 20
}
},
"additionalProperties": false
}🟢get_store_info
The shop's posted opening hours and whether it is open right now.
Input Schema
{
"type": "object",
"properties": {},
"additionalProperties": false
}Community
Evidence