Aframe Connector
FreeNot checkedEnables Claude to create and manage transactions in Aframe via the Aframe Open API, supporting transaction creation and note addition.
About
Enables Claude to create and manage transactions in Aframe via the Aframe Open API, supporting transaction creation and note addition.
README
A Node.js MCP server that bridges Claude sessions to the Aframe Open API. Deployed on Railway, exposed to Claude.ai as a custom remote MCP connector.
Status
v0.2.0 — POC validated, expanded to core transaction CRUD + custom fields.
Tools
| Tool | Description |
|---|---|
create_transaction |
Create a new transaction in Aframe |
get_transaction |
Fetch an existing transaction by ID (full payload incl. custom fields) |
update_transaction |
PATCH transaction fields (partial update via JSON Patch under the hood) |
update_custom_field |
PATCH a custom/merge field by Merge Field Code (e.g. f_EarnestMoney) |
add_transaction_note |
Add an activity note to an existing transaction |
Architecture
Claude.ai session
↓ (custom MCP connector — Streamable HTTP)
Railway service (this repo)
↓ (HTTPS with X-AFrame-API-Key header)
Aframe Open API
Local development
npm install- Copy
.env.exampleto.envand fill inAFRAME_API_KEY npm start- Verify health:
curl http://localhost:3000/→{"status":"ok",...}
Deployment (Railway)
Auto-deploys on push to main. Required environment variable:
AFRAME_API_KEY— your Aframe API key
Generate a public domain under Settings → Networking after the first deploy.
Connecting to Claude.ai
Settings → Connectors → Add custom connector → paste https://<railway-url>/mcp → Add.
Tools become available in any new conversation with the connector enabled.
Implementation notes
Aframe response envelope: { payload, error }. The error block can appear alongside payload on 2xx success responses (as validation warnings, e.g. "defaulted to current AppUser"). HTTP status is the authoritative success/failure signal — error on 2xx is surfaced as warnings, not thrown.
JSON Patch (RFC 6902): Aframe's PATCH endpoints (update_transaction, update_custom_field) require an array of patch operations with Content-Type: application/json-patch+json. The MCP tools accept friendly flat-object inputs (e.g. { closingDate: "2026-08-15" }) and the client internally constructs the patch array. Callers never need to write RFC 6902 syntax.
Custom fields: Stored as a flat xactionFieldData map keyed by Merge Field Code (e.g. f_EarnestMoney). All values are strings regardless of underlying type — Aframe handles type coercion server-side.
Auth note
This service runs authless. Acceptable for development since the Railway subdomain is effectively unguessable, but not suitable for production. Claude.ai's custom connector UI does not currently support pasted bearer tokens (per the connector auth docs); production use will require OAuth 2.1 with PKCE.
Version history
- v0.2.0 — Added
get_transaction,update_transaction,update_custom_field. Fixed response envelope parsing to treaterroron 2xx as warnings rather than failures. JSON Patch helper for PATCH endpoints. - v0.1.0 — Initial POC with
create_transactionandadd_transaction_note.
Reference
- Aframe Open API: https://api.aframeonline.com/api-pub/swagger-ui/index.html
- MCP spec: https://modelcontextprotocol.io
- Claude custom connectors: https://support.claude.com/en/articles/11175166-get-started-with-custom-connectors-using-remote-mcp
- JSON Patch (RFC 6902): https://datatracker.ietf.org/doc/html/rfc6902
Installing Aframe Connector
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/ChalkWorld/aframe-mcp-connectorFAQ
Is Aframe Connector MCP free?
Yes, Aframe Connector MCP is free — one-click install via Unyly at no cost.
Does Aframe Connector need an API key?
No, Aframe Connector runs without API keys or environment variables.
Is Aframe Connector hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install Aframe Connector in Claude Desktop, Claude Code or Cursor?
Open Aframe Connector on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzCompare Aframe Connector with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
