Centrex MCP Server

Centrex MCP Server

Enables Claude to interact with the Centrex CRM & LOS API, providing direct access to contacts, advances, documents, alerts, users, teams, and lender submissions.

Category
访问服务器

README

Centrex MCP Server

MCP (Model Context Protocol) server for the Centrex Software CRM & LOS API v1. Gives Claude direct access to contacts, advances, documents, alerts, users, teams, and lender submissions.

Quick Install

Option A — Terminal (Claude Code)

claude mcp add centrex \
  --command node \
  --args "/path/to/centrex-mcp-server/dist/index.js" \
  -e CENTREX_ACCESS_TOKEN=your_token_here

Option B — Manual JSON config

Add to ~/.claude.json (global) or .claude.json in your project:

{
  "mcpServers": {
    "centrex": {
      "command": "node",
      "args": ["/path/to/centrex-mcp-server/dist/index.js"],
      "env": {
        "CENTREX_ACCESS_TOKEN": "your_access_token_here",
        "CENTREX_ACCOUNT_ID": "optional_account_id",
        "CENTREX_ALLOW_DESTRUCTIVE_OPERATIONS": "false"
      }
    }
  }
}

Option C — Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "centrex": {
      "command": "node",
      "args": ["C:/path/to/centrex-mcp-server/dist/index.js"],
      "env": {
        "CENTREX_ACCESS_TOKEN": "your_access_token_here"
      }
    }
  }
}

Installation & Build

git clone https://github.com/AllianceGS-Development/centrex-mcp-server.git
cd centrex-mcp-server
npm install
npm run build       # compiles TypeScript → dist/

Copy .env.example to .env and fill in your credentials, then point the config to dist/index.js.


Environment Variables

Variable Required Description
CENTREX_ACCESS_TOKEN Yes Bearer token from Centrex → Settings → API
CENTREX_ACCOUNT_ID No Lock to a specific account/org ID
CENTREX_ALLOW_DESTRUCTIVE_OPERATIONS No Set true to allow DELETE operations (default false)

Get your API access token from your Centrex account under Settings → API or contact support@centrexsoftware.com.


Tools Reference

Contacts

centrex_list_contacts

Search and list contacts with optional filters.

Parameter Type Required Description
search string No Full-text search query
email string No Filter by email
phone string No Filter by phone number
status string No Filter by contact status
limit string No Results per page (default 25)
offset string No Pagination offset

centrex_get_contact

Get a single contact by ID.

Parameter Type Required Description
contact_id string Yes Contact ID

centrex_create_contact

Create a new contact/lead.

Parameter Type Required Description
first_name string Yes First name
last_name string Yes Last name
email string No Email address
phone string No Phone number
business_name string No Business/company name
address string No Street address
city string No City
state string No State (2-letter)
zip string No ZIP code
status string No Contact status
assigned_user_id string No User to assign this contact to

centrex_update_contact

Update an existing contact (partial update).

Parameter Type Required Description
contact_id string Yes Contact ID to update
first_name string No New first name
last_name string No New last name
email string No New email
phone string No New phone
business_name string No New business name
status string No New status
assigned_user_id string No Reassign to user

centrex_delete_contact

Delete a contact. Requires CENTREX_ALLOW_DESTRUCTIVE_OPERATIONS=true.

Parameter Type Required Description
contact_id string Yes Contact ID to delete

Contact Notes

centrex_get_contact_notes

Get all notes for a contact.

Parameter Type Required Description
contact_id string Yes Contact ID

centrex_create_contact_note

Add a note to a contact.

Parameter Type Required Description
contact_id string Yes Contact ID
note string Yes Note text
type string No Note type/category

Communication

centrex_send_communication

Send email or SMS to a contact.

Parameter Type Required Description
contact_id string Yes Contact ID
type string Yes email or sms
message string Yes Message body
subject string Cond. Required for email
template_id string No Template ID to use

Advances (Loans)

centrex_list_advances

List loan/advance records.

Parameter Type Required Description
contact_id string No Filter by contact
status string No Filter by status
limit string No Results per page
offset string No Pagination offset

centrex_create_advance

Create a new loan/advance record.

Parameter Type Required Description
contact_id string Yes Contact this advance belongs to
amount number Yes Advance amount
status string No Status
type string No Advance type
notes string No Notes

Documents

centrex_list_documents

List documents.

Parameter Type Required Description
contact_id string No Filter by contact
limit string No Results per page
offset string No Pagination offset

centrex_get_document

Get document metadata and download URL.

Parameter Type Required Description
document_id string Yes Document ID

Alerts

centrex_list_alerts

List alerts/reminders.

Parameter Type Required Description
contact_id string No Filter by contact
status string No Filter by status
limit string No Results per page
offset string No Pagination offset

centrex_create_alert

Create an alert/reminder.

Parameter Type Required Description
contact_id string Yes Contact ID
message string Yes Alert message
due_date string No ISO 8601 due date
assigned_user_id string No User to assign to
type string No Alert type

Users & Teams

centrex_list_users

List users/agents.

Parameter Type Required Description
limit string No Results per page
offset string No Pagination offset

centrex_get_user

Get a user by ID.

Parameter Type Required Description
user_id string Yes User ID

centrex_list_teams

List teams.

Parameter Type Required Description
limit string No Results per page
offset string No Pagination offset

Lender Submissions

centrex_list_submissions

List lender submission records.

Parameter Type Required Description
contact_id string No Filter by contact
status string No Filter by status
limit string No Results per page
offset string No Pagination offset

centrex_get_submission

Get a specific submission.

Parameter Type Required Description
submission_id string Yes Submission ID

Generic Escape Hatch

centrex_request

Make a raw authenticated request to any Centrex API endpoint not covered by dedicated tools.

Parameter Type Required Description
method string Yes GET, POST, PUT, PATCH, DELETE
path string Yes API path starting with / (e.g. /contacts/123/forms)
params object No Query string parameters
body object No Request body for POST/PUT/PATCH

Centrex API Endpoint Reference

Resource Method Endpoint Description
Contacts GET /contacts List/search contacts
Contacts POST /contacts Create contact
Contacts GET /contacts/{id} Get contact
Contacts PUT /contacts/{id} Update contact
Contacts DELETE /contacts/{id} Delete contact
Contact Notes GET /contacts/{id}/notes Get notes
Contact Notes POST /contacts/{id}/notes Add note
Communication POST /contacts/{id}/communication Send email/SMS
Forms POST /contacts/{id}/forms Send external form
Advances GET /advances List advances
Advances POST /advances Create advance
Advances GET /advances/{id} Get advance
Advances PUT /advances/{id} Update advance
Documents GET /documents List documents
Documents POST /documents Upload document
Documents GET /documents/{id} Get document
Alerts GET /alerts List alerts
Alerts POST /alerts Create alert
Alerts PUT /alerts/{id} Update alert
Alerts DELETE /alerts/{id} Delete alert
Users GET /users List users
Users POST /users Create user
Users GET /users/{id} Get user
Users PUT /users/{id} Update user
Users DELETE /users/{id} Delete user
Users GET /users/preferences User preferences
Teams GET /teams List teams
Teams POST /teams Create team
Teams GET /teams/{id} Get team
Teams PUT /teams/{id} Update team
Teams DELETE /teams/{id} Delete team
Submissions GET /submissions List submissions
Submissions GET /submissions/{id} Get submission
Submissions GET /submissions/{id}/status Submission status
Credit Reports GET /credit-reports Credit report data
Webhooks POST /webhooks Configure webhooks

Security

  • Bearer token is never logged or exposed in output
  • Sensitive fields are redacted from responses
  • SSRF protection: only api.centrexsoftware.com is reachable
  • Destructive operations (DELETE) require explicit opt-in via CENTREX_ALLOW_DESTRUCTIVE_OPERATIONS=true

License

MIT — Alliance Global Solutions 2026

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选