Aframe MCP Connector
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Aframe MCP ConnectorCreate a transaction for 123 Oak St, Austin TX for buyer side."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Aframe MCP Connector
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 a new transaction in Aframe |
| Fetch an existing transaction by ID (full payload incl. custom fields) |
| PATCH transaction fields (partial update via JSON Patch under the hood) |
| PATCH a custom/merge field by Merge Field Code (e.g. |
| Add an activity note to an existing transaction |
Related MCP server: freee MCP Server
Architecture
Claude.ai session
↓ (custom MCP connector — Streamable HTTP)
Railway service (this repo)
↓ (HTTPS with X-AFrame-API-Key header)
Aframe Open APILocal development
npm installCopy
.env.exampleto.envand fill inAFRAME_API_KEYnpm startVerify 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
This server cannot be deployed
Maintenance
Related MCP Connectors
Create projects, nodes, and tasks in UluP Spaces by conversation with Claude.
- TaprootOAuthcom.taproothq
Persistent memory layer for AI tools. Save and recall notes across Claude and other MCP clients.
Search, read, create and edit your Memol notes from Claude. Team note-taking with AI search.
- Era ContextOAuthapp.era
Personal finance, bank account, and shared memory connector for Claude, ChatGPT, Gemini Spark & more
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI-powered portfolio analysis for Wealthfolio, allowing Claude to query and analyze investment holdings, asset allocation, real estate properties, and execute transactions through natural language.1-
- AlicenseNot gradedqualityDmaintenanceEnables Claude to interact with freee accounting software through OAuth 2.0 authentication, supporting operations like transaction creation, account management, receipt uploads, and financial statement retrieval.MIT
- AlicenseBqualityDmaintenanceEnables Claude to interact with the Centrex CRM & LOS API, providing direct access to contacts, advances, documents, alerts, users, teams, and lender submissions.20MIT
- AlicenseBqualityDmaintenanceEnables Claude to interact with an Obsidian vault via the Local REST API plugin, supporting file operations, search, periodic notes, commands, and semantic search.222,509 npmMIT