Talandor
Public MCP report

Easy Labs MCP Server

https://mcp.itseasy.co/mcp

Official Registry

Official Registry · co.itseasy/easy-mcp · Publisher namespace: co.itseasy

Server checked today at 22:53 UTC

Displayed catalog: last complete observation from September 19

14 public tools observed. Tools were not executed. These tools come from the catalog observation above, not from the latest availability check.

Reachable

What Talandor observed

The server answered

Add the endpoint to your assistant using the configuration shown below. A Watch can alert you if this public catalog changes.

This is a public protocol and tools/list check, not a functional validation.

https://mcp.itseasy.co/mcp
AvailabilityReachablemeasured
Tools14 public tools observedmeasured
Assistant testNot tested by Talandorunknown

Configure your assistant · Check details

How to use this MCP

Talandor checks the server; it does not connect the server to your assistant.

Choose your assistant, then copy the configuration shown for that client. Authentication is completed with the MCP provider, never inside Talandor.

    Open the official client guide (opens in a new tab)
    Check details

    What changed

    Public contract stable since
    Last check · No semantic contract change since the previous complete snapshot.
    Info

    This public timeline shows the latest check, the last 24 hours, and the most recent important change. Watch keeps 30 days.

    The notes above are for this connector.

    Server-provided content. Tool names, descriptions and schemas below are copied from the MCP server. They may be in another language. Talandor does not translate or verify them.
    Tools and declared exposure

    Server annotations are declarations, not verified behavior.

    Show 14 of 14 server-provided tool definitions
    explain_application_step
    Declared read-only
    Show server-provided details
    Server description (copied; language not verified)
    Explains one step of the Easy merchant application in plain English: what's asked, why it's required (KYB/underwriting context), and what to have ready. Steps 1-7: business details, business type, tax details, owners, merchant settings, processing volume, review & terms.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "step"
      ],
      "properties": {
        "step": {
          "type": "integer",
          "maximum": 7,
          "minimum": 1,
          "description": "Application step number (1-7)"
        }
      }
    }
    find_customer
    Declared read-only
    Show server-provided details
    Server description (copied; language not verified)
    Find a customer by email or name (case-insensitive substring match) and show the best match's profile with recent payment activity. Use get_customer only when you already have a customer id.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "query"
      ],
      "properties": {
        "query": {
          "type": "string",
          "maxLength": 120,
          "minLength": 2,
          "description": "Email address or (partial) name to search for"
        }
      }
    }
    get_balance_transfer
    Declared read-only
    Show server-provided details
    Server description (copied; language not verified)
    Get a balance transfer by ID.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "balance_transfer_id"
      ],
      "properties": {
        "balance_transfer_id": {
          "type": "string",
          "minLength": 1
        }
      }
    }
    get_customer
    Declared read-only
    Show server-provided details
    Server description (copied; language not verified)
    Get a customer by ID.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "customer_id"
      ],
      "properties": {
        "customer_id": {
          "type": "string",
          "minLength": 1
        }
      }
    }
    get_dispute
    Declared read-only
    Show server-provided details
    Server description (copied; language not verified)
    Get a single dispute by ID.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "dispute_id"
      ],
      "properties": {
        "dispute_id": {
          "type": "string",
          "minLength": 1
        }
      }
    }
    get_settlement
    Declared read-only
    Show server-provided details
    Server description (copied; language not verified)
    Get a single settlement by ID.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "settlement_id"
      ],
      "properties": {
        "settlement_id": {
          "type": "string",
          "minLength": 1
        }
      }
    }
    get_transfer
    Declared read-only
    Show server-provided details
    Server description (copied; language not verified)
    Get a single transfer by ID.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "transfer_id"
      ],
      "properties": {
        "transfer_id": {
          "type": "string",
          "minLength": 1
        }
      }
    }
    list_balance_transfers
    Declared read-only
    Show server-provided details
    Server description (copied; language not verified)
    List balance transfers.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "properties": {
        "limit": {
          "type": "integer",
          "default": 20,
          "maximum": 100,
          "minimum": 1
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0
        }
      }
    }
    list_customers
    Declared read-only
    Show server-provided details
    Server description (copied; language not verified)
    List customers with pagination.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "properties": {
        "limit": {
          "type": "integer",
          "default": 20,
          "maximum": 100,
          "minimum": 1
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0
        }
      }
    }
    list_disputes
    Declared read-only
    Show server-provided details
    Server description (copied; language not verified)
    List disputes with optional state filter.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "properties": {
        "limit": {
          "type": "integer",
          "default": 20,
          "maximum": 100,
          "minimum": 1
        },
        "state": {
          "type": "string"
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0
        }
      }
    }
    list_settlements
    Declared read-only
    Show server-provided details
    Server description (copied; language not verified)
    List settlements with pagination.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "properties": {
        "limit": {
          "type": "integer",
          "default": 20,
          "maximum": 100,
          "minimum": 1
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0
        }
      }
    }
    list_transfers
    Declared read-only
    Show server-provided details
    Server description (copied; language not verified)
    List recent transfers with optional filters.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "properties": {
        "limit": {
          "type": "integer",
          "default": 20,
          "maximum": 100,
          "minimum": 1
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0
        },
        "status": {
          "type": "string"
        }
      }
    }
    merchant_application_checklist
    Declared read-only
    Show server-provided details
    Server description (copied; language not verified)
    Everything a business needs to gather before applying for an Easy merchant account — the 7 application steps with required information for each. Use this to prepare someone so the application takes ~10 minutes in one sitting. Do NOT collect SSN/EIN/bank details in conversation; the checklist explains where those are entered securely.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "properties": {}
    }
    revenue_summary
    Declared read-only
    Show server-provided details
    Server description (copied; language not verified)
    Revenue summary for a period (7d, 30d, 90d, 6m, 12m, or mtd): gross volume, transfer counts by status, average ticket, and change versus the previous equal-length period. Use this before reaching for list_transfers when the question is about overall performance.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "properties": {
        "period": {
          "enum": [
            "7d",
            "30d",
            "90d",
            "6m",
            "12m",
            "mtd"
          ],
          "type": "string",
          "default": "30d"
        }
      }
    }
    Evidence and limitations

    Method: anonymous Streamable HTTP probe. We never invoke a tool.

    Attempted protocols: 2026-07-28, 2025-11-25

    Protocol2025-11-25
    TransportStreamable HTTP
    AuthNo authentication challenge observed
    EvidencePublic contract observed
    Total latency1854 ms
    Response bytes6024

    No diagnostic errors.

    Observation history
    Operational
    · stable since
    2025-11-25 · 14 tools · no change · 85 checks
    Operational
    2025-11-25 · 14 tools
    Operational
    2025-11-25 · 14 tools
    Complete public contract · 2025-11-25 · 14 tools
    48cdda8db1ce
    Complete public contract · 2025-11-25 · 14 tools
    48cdda8db1ce
    Complete public contract · 2025-11-25 · 14 tools
    48cdda8db1ce

    Deep monitoring eligibility

    Eligible for deep monitoring

    A complete public tools/list contract was observed, so a future deep-monitoring baseline can be compared safely.

    A Watch starts from the payment section on this page, and only after a verified payment.

    See public monitoring
    Watch · recurring plan

    Watch this MCP

    Your agent depends on this MCP. When Watch is active, periodic checks alert you when we observe a change that may affect the client you selected.

    • Know when it goes downWhen Watch is active, availability is observed about every 5 minutes. An outage is confirmed after two failed checks, so a single miss is not treated as a lasting outage.
    • Know when its contract changesDeep checks about every hour compare public tool catalogs and authentication surfaces over time.
    • Know what changed and what to fixAn alert names the observed change and the next step for the client you selected.

    Full public-contract coverage: Availability, protocol, auth and public tool contract changes can be compared.

    Full WatchAvailability, protocol, auth and public tool contract changes
    Surface WatchAvailability, TLS, protocol and auth surface — no private tool diff

    Early access currently activates this first endpoint; adding more endpoints up to the planned limit of five is not open in this deployment. Live checkout is open. A Watch activates only after a verified payment event; a browser return never starts monitoring.

    Start Watch