ams360-mcp-server
MCP server for Vertafore AMS360 WSAPI v3 that enables querying clients, policies, renewals, and activities through natural language.
README
AMS360 MCP Server
MCP server for Vertafore AMS360 WSAPI v3, implemented in TypeScript with @modelcontextprotocol/sdk and a real SOAP 1.1 client for AMS360's WCF endpoint.
What it does
This server exposes the following MCP tools:
search_clients(query)get_client(clientId)get_policies(clientId)get_renewals(startDate, endDate)get_activities(filter)
Under the hood it uses the public AMS360 WSAPI v3 contract:
Loginto establish a sessionCustomerGetByIdCustomerGetByNumberCustomerGetListByNamePrefixPolicyGetPolicyGetListByCustomerIdPolicyGetListByCustomerNumberPolicyGetListByPolicyNumberCustomerSuspenseGetListByCustomerIdCommonSuspenseGetListByEntityIdPersonalNoteGetListLineOfBusinessGetByCode
Important WSAPI notes
The public Vertafore AMS360 WSAPI v3 docs currently describe a single SOAP endpoint:
https://wsapi.ams360.com/v3/WSAPIService.svc
Authentication is not plain REST-style auth. The documented flow is:
- Call
LoginwithAgencyNo,LoginId,Password, and optionallyEmployeeCode. - Read the
WSAPISessionSOAP header from the login response. - Send that
WSAPISessionheader with subsequent requests.
This server follows that flow and also supports optional HTTP Basic auth for agencies that place WSAPI behind an additional HTTPS auth layer.
Limitations from the public docs
Two of the requested concepts are not fully exposed by the current public WSAPI v3 surface:
- The docs show
CustomerActivityInsertandCommonActivityInsert, but not an activity-list retrieval operation. - The docs do not publish a global agency-wide renewal date-range query.
Because of that:
get_activitiesis implemented against the retrievable WSAPI entities that agencies commonly use for reminders: customer suspenses, common suspenses, and personal notes.get_renewalsreturns a structured docs-based limitation message instead of pretending a complete renewal feed exists when it does not.
Prerequisites
- Node.js 20+ recommended
- AMS360 WSAPI credentials created in AMS360
- Your agency number
Install
npm install
npm run build
To run directly from source during development:
npm run dev
To run the compiled server:
npm start
Configuration
Set these environment variables:
export AMS360_AGENCY_NO="YOUR_AGENCY_NO"
export AMS360_USERNAME="YOUR_WSAPI_LOGIN_ID"
export AMS360_PASSWORD="YOUR_WSAPI_PASSWORD"
export AMS360_ENDPOINT_URL="https://wsapi.ams360.com/v3/WSAPIService.svc"
Optional variables:
export AMS360_EMPLOYEE_CODE="ABC"
export AMS360_TIMEOUT_MS="30000"
export AMS360_POLICY_DETAIL_LIMIT="25"
export AMS360_DEBUG="false"
Optional HTTP Basic auth, if your agency front-ends WSAPI with another auth layer:
export AMS360_HTTP_AUTH_MODE="basic"
export AMS360_HTTP_USERNAME="basic-auth-user"
export AMS360_HTTP_PASSWORD="basic-auth-password"
Aliases supported by this server:
AMS360_AGENCY_URLas an alias forAMS360_ENDPOINT_URLAMS360_LOGIN_IDas an alias forAMS360_USERNAME
Claude Desktop
Add the server to claude_desktop_config.json:
{
"mcpServers": {
"ams360": {
"command": "node",
"args": [
"/absolute/path/to/ams360-mcp-server/dist/index.js"
],
"env": {
"AMS360_AGENCY_NO": "YOUR_AGENCY_NO",
"AMS360_USERNAME": "YOUR_WSAPI_LOGIN_ID",
"AMS360_PASSWORD": "YOUR_WSAPI_PASSWORD",
"AMS360_ENDPOINT_URL": "https://wsapi.ams360.com/v3/WSAPIService.svc"
}
}
}
}
If you want Claude Desktop to launch it from the package directory instead:
{
"mcpServers": {
"ams360": {
"command": "npx",
"args": [
"tsx",
"/absolute/path/to/ams360-mcp-server/src/index.ts"
],
"env": {
"AMS360_AGENCY_NO": "YOUR_AGENCY_NO",
"AMS360_USERNAME": "YOUR_WSAPI_LOGIN_ID",
"AMS360_PASSWORD": "YOUR_WSAPI_PASSWORD"
}
}
}
}
Claude Code
Add the same server definition to .claude.json:
{
"mcpServers": {
"ams360": {
"command": "node",
"args": [
"/absolute/path/to/ams360-mcp-server/dist/index.js"
],
"env": {
"AMS360_AGENCY_NO": "YOUR_AGENCY_NO",
"AMS360_USERNAME": "YOUR_WSAPI_LOGIN_ID",
"AMS360_PASSWORD": "YOUR_WSAPI_PASSWORD",
"AMS360_ENDPOINT_URL": "https://wsapi.ams360.com/v3/WSAPIService.svc"
}
}
}
}
Tool behavior
search_clients(query)
Best-effort search strategy:
- GUID ->
CustomerGetById - numeric string ->
CustomerGetByNumber - text ->
CustomerGetListByNamePrefix - policy-looking string ->
PolicyGetListByPolicyNumber, then hydrate matched customer records
get_client(clientId)
Fetches a full customer record by:
- customer GUID, or
- customer number
get_policies(clientId)
Returns:
- policy summaries for all matched policies
- hydrated policy details for up to
AMS360_POLICY_DETAIL_LIMITpolicies - line-of-business enrichment via
LineOfBusinessGetByCode
Important:
- policy summaries are returned for all matched policies
- full
PolicyGetdetail is only fetched for the firstAMS360_POLICY_DETAIL_LIMITpolicies - the default detail limit is
25 - the tool output includes
detailHydrationTruncatedanddetailHydrationMessagewhen the detailed set is partial
get_activities(filter)
Supported filter routes:
{"customerId":"<guid>"}->CustomerSuspenseGetListByCustomerId{"entityId":"<id>","entityType":<short>}->CommonSuspenseGetListByEntityId{"source":"personalNotes","dateFrom":"2026-01-01","dateTo":"2026-01-31"}->PersonalNoteGetList
Important:
- this tool does not default to personal notes when the filter is empty
- to retrieve personal notes, set
sourceto"personalNotes"explicitly
get_renewals(startDate, endDate)
Returns a structured limitation response explaining that the public WSAPI v3 docs do not expose a true agency-wide renewal date-range query. This is returned as a normal tool response, not a transport/tool failure.
References
- Vertafore AMS360 API introduction: link.vertafore.com/VERTAFORE/documentation/AMS360/introduction
- AMS360 WSAPI setup help: help.vertafore.com/AMS360/content/contextsensitive/download-integration/cswebserviceapisetup.htm
- AMS360 developer portal TOC: api.apps.vertafore.com/.../entities/AMS360/toc
- AMS360 WSAPI bundle metadata: api.apps.vertafore.com/.../entities/AMS360/docs/AMS360:WSAPI:22f503
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.