← WebMCP Directory

atyours.ca

atyours.ca

live Unverified (seed import) Productivity & Business 2 tools imperative implementation

Experimental preview: AtYours is an experimental preview of a future at-home services marketplace. Join the waitlist for launch and service-availability updates.

First seen 2026-09-07 · Last seen 2026-09-14 · Source: webmcp.com

Answer 0 · Act 1 · Transact 1 · Score: Not yet scored

Tool inspector

submit_provider_application

transact imperative May require confirmation

Submit an application to AtYours’s prospective provider network. AtYours is building an agentic platform for high-intent lead generation for service businesses. The platform is prelaunch and is not yet a live lead, booking, or matching service. Applications are open to providers inside or outside the GTA. Submission is not approval, does not guarantee work, and creates no employment or contractor relationship. Service keys: chef = Private Chef; barber = Barber; tech = Home Tech; dj = DJ; beauty = Beauty; fitness = Fitness; tidy = Tidy; handyman = Handyman; seniorCare = Senior Care; wax = Wax; glam = Glam; braid = Braid; clean = Clean; photography = Photography; other = Other. The current page is not specific to one service; choose service keys from the schema based on the applicant's work. Required application fields: applicantName, email, phone, services, baseCity, province, country, serviceArea, yearsExperience, insuranceStatus, backgroundAndFit, consents. Optional fields: businessName, websiteOrProfileUrl, credentials. Required when services includes “other”; otherwise it must be omitted. The applicant must consent to review, follow-up contact, consideration as a prospective AtYours provider, and the Privacy Policy after confirming the supplied contact information. Use only after explicit application intent, review of the complete application, confirmed name/email/phone, and affirmative required consents. Never infer consent. Providers use this tool, not the customer waitlist. Human verification appears as a popup on the current AtYours page. After verification succeeds, repeat the identical call to retrieve the idempotent receipt. Privacy Policy: https://atyours.ca/privacy/ Visible form fallback: https://atyours.ca/providers/

Page: /

Input schema

PropertyTypeRequiredDescription
explicitApplicationIntent boolean yes True only when the user explicitly wants to submit this application now.
contactInformationConfirmed boolean yes True only after the user confirms the supplied name, email, and phone.
applicantName string yes Applicant's full name.
email string yes Applicant's confirmed email address.
phone string yes Applicant's confirmed phone number.
businessName string no Optional business name.
websiteOrProfileUrl string no Optional complete http or https business website or professional profile URL.
services array yes One or more services the applicant provides. Keys: chef = Private Chef; barber = Barber; tech = Home Tech; dj = DJ; beauty = Beauty; fitness = Fitness; tidy = Tidy; handyman = Handyman; seniorCare = Senior Care; wax = Wax; glam = Glam; braid = Braid; clean = Clean; photography = Photography; other = Other.
otherService string no Required when services includes “other”; omit it otherwise.
baseCity string yes City where the provider is based.
province string yes Province, state, or region where the provider is based.
country string yes Country where the provider is based.
serviceArea string yes Plain-language description of where the provider can travel or deliver services.
yearsExperience integer yes Whole number of years of relevant experience.
credentials string no Optional relevant licences, certifications, or credentials. Do not collect documents.
insuranceStatus string yes Applicant's current business or professional insurance status.
backgroundAndFit string yes A short statement about the applicant's background and fit for high-intent service leads.
consents object yes Every consent must be affirmatively obtained from the applicant and must not be inferred.
Raw JSON schema
{
  "type": "object",
  "additionalProperties": false,
  "required": [
    "explicitApplicationIntent",
    "contactInformationConfirmed",
    "applicantName",
    "email",
    "phone",
    "services",
    "baseCity",
    "province",
    "country",
    "serviceArea",
    "yearsExperience",
    "insuranceStatus",
    "backgroundAndFit",
    "consents"
  ],
  "properties": {
    "explicitApplicationIntent": {
      "type": "boolean",
      "const": true,
      "description": "True only when the user explicitly wants to submit this application now."
    },
    "contactInformationConfirmed": {
      "type": "boolean",
      "const": true,
      "description": "True only after the user confirms the supplied name, email, and phone."
    },
    "applicantName": {
      "type": "string",
      "minLength": 1,
      "maxLength": 100,
      "description": "Applicant's full name."
    },
    "email": {
      "type": "string",
      "minLength": 1,
      "maxLength": 254,
      "description": "Applicant's confirmed email address.",
      "format": "email"
    },
    "phone": {
      "type": "string",
      "minLength": 7,
      "maxLength": 30,
      "description": "Applicant's confirmed phone number."
    },
    "businessName": {
      "type": "string",
      "minLength": 1,
      "maxLength": 120,
      "description": "Optional business name."
    },
    "websiteOrProfileUrl": {
      "type": "string",
      "minLength": 1,
      "maxLength": 500,
      "description": "Optional complete http or https business website or professional profile URL.",
      "format": "uri"
    },
    "services": {
      "type": "array",
      "minItems": 1,
      "maxItems": 15,
      "uniqueItems": true,
      "description": "One or more services the applicant provides. Keys: chef = Private Chef; barber = Barber; tech = Home Tech; dj = DJ; beauty = Beauty; fitness = Fitness; tidy = Tidy; handyman = Handyman; seniorCare = Senior Care; wax = Wax; glam = Glam; braid = Braid; clean = Clean; photography = Photography; other = Other.",
      "items": {
        "type": "string",
        "enum": [
          "chef",
          "barber",
          "tech",
          "dj",
          "beauty",
          "fitness",
          "tidy",
          "handyman",
          "seniorCare",
          "wax",
          "glam",
          "braid",
          "clean",
          "photography",
          "other"
        ]
      }
    },
    "otherService": {
      "type": "string",
      "minLength": 1,
      "maxLength": 120,
      "description": "Required when services includes “other”; omit it otherwise."
    },
    "baseCity": {
      "type": "string",
      "minLength": 1,
      "maxLength": 100,
      "description": "City where the provider is based."
    },
    "province": {
      "type": "string",
      "minLength": 1,
      "maxLength": 100,
      "description": "Province, state, or region where the provider is based."
    },
    "country": {
      "type": "string",
      "minLength": 1,
      "maxLength": 100,
      "description": "Country where the provider is based."
    },
    "serviceArea": {
      "type": "string",
      "minLength": 1,
      "maxLength": 500,
      "description": "Plain-language description of where the provider can travel or deliver services."
    },
    "yearsExperience": {
      "type": "integer",
      "minimum": 0,
      "maximum": 80,
      "description": "Whole number of years of relevant experience."
    },
    "credentials": {
      "type": "string",
      "minLength": 1,
      "maxLength": 1000,
      "description": "Optional relevant licences, certifications, or credentials. Do not collect documents."
    },
    "insuranceStatus": {
      "type": "string",
      "enum": [
        "insured",
        "in_progress",
        "not_insured",
        "unsure"
      ],
      "description": "Applicant's current business or professional insurance status."
    },
    "backgroundAndFit": {
      "type": "string",
      "minLength": 40,
      "maxLength": 2000,
      "description": "A short statement about the applicant's background and fit for high-intent service leads."
    },
    "consents": {
      "type": "object",
      "additionalProperties": false,
      "required": [
        "applicationReview",
        "followUpContact",
        "sharedNetwork",
        "privacyPolicy"
      ],
      "description": "Every consent must be affirmatively obtained from the applicant and must not be inferred.",
      "properties": {
        "applicationReview": {
          "type": "boolean",
          "const": true,
          "description": "Applicant agrees that AtYours may review the application."
        },
        "followUpContact": {
          "type": "boolean",
          "const": true,
          "description": "Applicant agrees that AtYours may contact them about the application."
        },
        "sharedNetwork": {
          "type": "boolean",
          "const": true,
          "description": "Applicant agrees to consideration for the prospective AtYours provider network."
        },
        "privacyPolicy": {
          "type": "boolean",
          "const": true,
          "description": "Applicant accepts the Privacy Policy at https://atyours.ca/privacy/"
        }
      }
    }
  }
}

Similar websites

eworker.ca

eworker.ca

E-Worker is business infrastructure powered by AI, with focused apps and connected business work.

live Unverified Productivity & Business
73 tools A10 / Act63 / T0 Not yet scored Seen 2026-09-14
eworker_site_status eworker_list_apps eworker_resolve_app eworker_open_app ewdoc_status
Inspect tools
urban-planning-copilot.heisenbug.in

urban-planning-copilot.heisenbug.in

Urban Planning Copilot

demo Unverified Productivity & Business
37 tools A10 / Act27 / T0 Not yet scored Seen 2026-09-14
get_workspace get_analysis_plan list_candidates inspect_candidate list_shortlist
Inspect tools
vide.zerdalu.com

vide.zerdalu.com

Vide

live Unverified Productivity & Business Transact tools
28 tools A13 / Act14 / T1 Not yet scored Seen 2026-09-14
list_project_files read_project_file write_project_file delete_project_file get_active_script
Inspect tools
labspace-agent-twin.onrender.com

labspace-agent-twin.onrender.com

LabSpace Atlas — design laboratories, index exact locations, and let a browser agent plan, audit, and navigate the spatial twin.

demo Unverified Productivity & Business
24 tools A5 / Act19 / T0 Not yet scored Seen 2026-09-14
labspace_add_inventory labspace_assess_workflow labspace_resolve_materials labspace_start_collection labspace_collection_step
Inspect tools

Related on Influzer