FindMyPart
Hard-to-source part discovery with replacement, salvage and fabrication paths.
Should I use this
Quality & Safety
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": {
"findmypart": {
"url": "https://findmypart.base44.app/functions/findMyPartMcp"
}
}
}Remote endpoints
https://findmypart.base44.app/functions/findMyPartMcpstreamable-httpWhat it can do
Tool inventory
Tools (4)
🟢get_part_hunt_offers
List current paid FindMyPart hunt options and pricing. Read-only. Does not create a checkout, invoice, charge, or payment obligation.
Input Schema
{
"type": "object",
"properties": {},
"$schema": "https://json-schema.org/draft/2020-12/schema"
}⚪prepare_part_hunt_checkout(user_confirmed_payment, offer_slug, email, part_description, name, ...)
After the human explicitly agrees to pay for the selected hunt, reserve the hunt and prepare a secure checkout URL. This creates a checkout session but does not charge the user and does not prove payment.
Input Schema
{
"type": "object",
"properties": {
"user_confirmed_payment": {
"type": "boolean",
"const": true
},
"offer_slug": {
"type": "string",
"enum": [
"quick-hunt",
"deep-hunt",
"rescue-hunt"
]
},
"email": {
"type": "string",
"format": "email",
"pattern": "^(?:[A-Za-z0-9_'+\\-]+\\.)*[A-Za-z0-9_'+\\-]*[A-Za-z0-9_+-]@(?:[A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"
},
"part_description": {
"type": "string",
"minLength": 5,
"maxLength": 5000
},
"name": {
"type": "string",
"maxLength": 120
},
"phone": {
"type": "string",
"maxLength": 50
},
"domain": {
"type": "string",
"enum": [
"AUTO",
"HEAVY",
"AG",
"INDUSTRIAL",
"CONSTRUCTION",
"MARINE",
"ELECTRONICS",
"APPLIANCE",
"POWERSPORTS",
"AEROSPACE",
"OTHER"
]
},
"asset_info": {
"type": "string",
"maxLength": 2000
},
"urgency": {
"type": "string",
"maxLength": 50
},
"location": {
"type": "string",
"maxLength": 240
},
"request_id": {
"type": "string",
"maxLength": 240
}
},
"required": [
"user_confirmed_payment",
"offer_slug",
"email",
"part_description"
],
"$schema": "https://json-schema.org/draft/2020-12/schema"
}🟢get_part_hunt_status(tracking_token)
Retrieve the current payment/fulfillment/solution state for a FindMyPart hunt using its tracking token. Read-only.
Input Schema
{
"type": "object",
"properties": {
"tracking_token": {
"type": "string",
"minLength": 12,
"maxLength": 240
}
},
"required": [
"tracking_token"
],
"$schema": "https://json-schema.org/draft/2020-12/schema"
}🟢get_findmypart_capabilities
Describe FindMyPart machine-facing endpoints, payment boundaries and available agent tools.
Input Schema
{
"type": "object",
"properties": {},
"$schema": "https://json-schema.org/draft/2020-12/schema"
}Community
Evidence