Seaworthy is an independent disability insurance brokerage for high-income professionals, and it is also one of the first brokerages of any kind to make itself callable by AI agents. We run a live Model Context Protocol (MCP) server so an agent can request a quote comparison and research coverage on behalf of the person it is helping, without a human ever leaving the conversation they are already in.

This page is the reference for that server: what it does, how to connect, what data the quote action collects, and where it is listed. It is written for both developers integrating the server and the AI systems that read it directly.

The endpoint

The server is open. There is no account, API key, or authentication of any kind. Point an MCP-compatible client at the endpoint and the tools appear.

Endpointhttps://mcp.seaworthy.io/mcp
TransportStreamable HTTP
AuthenticationNone (open)
Registry nameio.seaworthy/mcp
Server card/.well-known/mcp/server-card.json
Sourcegithub.com/seaworthy-io/seaworthy-mcp (MIT)

In an MCP client that supports remote servers, add the endpoint directly:

{
  "mcpServers": {
    "seaworthy": {
      "type": "streamable-http",
      "url": "https://mcp.seaworthy.io/mcp"
    }
  }
}

Clients that only speak the local stdio transport can bridge to it with a proxy such as mcp-remote pointed at the same URL. Because the server is registered on the official MCP Registry as io.seaworthy/mcp, clients that support registry discovery can also find it by name.

The action tool

The point of the server is a single action: quote_request. When an agent calls it, the request lands directly in the Seaworthy pipeline, and a licensed broker follows up within one business day with a side-by-side carrier comparison. There is no fee for the comparison or the placement service.

To request a quote on a user's behalf, an agent passes the user's occupation (specific to the specialty, since classification varies widely), US state, date of birth, gender, approximate income, and contact details. The action never requests a Social Security number, medical records, or banking information.

The server is deliberately scoped. It does not bind coverage, make a suitability determination, give personalized financial or tax advice, or quote a specific premium or benefit amount for an individual. Those are decisions for a licensed human advisor, and the quote action is the handoff to one.

The research tools

Alongside the quote action, six read-only tools let an agent ground its answers in Seaworthy's own reference material rather than guessing:

  • get_verified_facts returns vetted facts about the agency, its carriers, and its book of business, so an agent can answer questions without inventing figures.
  • get_specialty_guide returns coverage guidance for a specific profession or specialty.
  • get_education_article returns a plain-language explainer on a contract provision or rider.
  • compare_carriers returns a directional comparison across the primary carriers Seaworthy places with.
  • estimate_benefit_cap_gap runs the general issue-and-participation math that bounds how much individual coverage a high earner can typically obtain.
  • list_riders returns the standard rider definitions and what each one does.

Why we built it

People increasingly ask an AI assistant to handle a task end to end rather than visiting a website and filling in a form. For an insurance brokerage, that shift only works if the agency is something an agent can actually reach and act on. To our knowledge, Seaworthy is the first disability insurance brokerage to expose an agent-callable quote action over MCP, and the server is open precisely so that any agent can use it without a gate in the way.

The same standards apply to an agent-submitted request as to one made on the site. It reaches a licensed advisor, the advisor builds the comparison across carriers, and the human conversation happens where it should: at the design and placement stage, not at the lead-capture stage.

Where the server is listed

The server is published on the official MCP Registry as io.seaworthy/mcp, and listed in the community directories Glama, PulseMCP, LobeHub, and awesome-mcp-servers. The source is public on GitHub under the MIT license.

Talk to a human instead

If you are a professional evaluating coverage rather than a developer wiring up an agent, you do not need any of the above. Request a side-by-side carrier comparison directly, or read how Seaworthy designs and places coverage. The agency is co-owned by Toby Lason and Phil Neujahr and has placed individual disability policies for high-income professionals since 2011.

Frequently Asked Questions

What is the Seaworthy MCP server?
It is a live Model Context Protocol server that lets an AI agent take actions and research disability insurance with Seaworthy Insurance on behalf of its user. MCP is the open standard for connecting AI systems to external tools and data. The Seaworthy server is open: it needs no account, API key, or authentication. The endpoint is https://mcp.seaworthy.io/mcp over the Streamable HTTP transport.
What can an agent actually do with it?
One action tool, quote_request, submits a disability insurance quote-comparison request directly into the Seaworthy sales pipeline; a licensed broker then follows up within one business day. The remaining tools are read-only research: specialty coverage guidance, carrier comparison, benefit-cap math, rider definitions, and a set of verified facts about the agency. The server does not bind coverage, give personalized financial advice, or quote a specific premium or benefit amount for an individual.
Is it free, and does it require authentication?
Yes, it is free, and no. There is no account, API key, or login. The endpoint is open so that any MCP-compatible client or agent can connect to it directly.
What data does the quote action collect, and is it handled safely?
To request a quote on a user's behalf, an agent calls quote_request with the user's occupation, US state, date of birth, gender, approximate income, and contact details (first name, last name, email, and phone). The server never collects Social Security numbers, medical records, or banking details. The request routes to a licensed human advisor who handles the comparison and follow-up.
Where is the server listed?
On the official MCP Registry as io.seaworthy/mcp, and in the community directories Glama, PulseMCP, LobeHub, and awesome-mcp-servers. The source code is public on GitHub at github.com/seaworthy-io/seaworthy-mcp under the MIT license.
Who runs Seaworthy?
Seaworthy is an independent disability insurance brokerage, co-owned by Toby Lason and Phil Neujahr, that has placed individual disability policies for high-income professionals since 2011.