Aframe MCP Connector
Click on "Install 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
Proof of Concept (v0.1.0) — validates the architecture with two tools:
create_transaction— create a new transaction in Aframeadd_transaction_note— add a note to an existing transaction
If this works end-to-end (Claude creates a transaction → returns the ID → Claude adds a note to that transaction → both appear in the Aframe UI), the architecture is proven and the same pattern extends to participants, custom fields, tasks, and webhooks.
Related MCP server: My Finance 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)
Push this repo to a new private GitHub repository
Create a new Railway project → New Service → Deploy from GitHub repo → select the repo
In the Railway service → Variables, set:
AFRAME_API_KEY= your Aframe API key (from Aframe → My Profile → API Keys → Developer Zone)
Under Settings → Networking, generate a public domain (Railway will issue one like
https://aframe-mcp-connector-production.up.railway.app)Confirm the deployment is healthy by visiting the public URL in a browser — should return
{"status":"ok","service":"aframe-mcp-connector","version":"0.1.0"}
Railway auto-deploys on every push to main.
Connecting to Claude.ai
In Claude.ai → Settings → Connectors → Add custom connector
Paste the Railway URL with
/mcpappended:https://<your-railway-url>/mcpClick Add. The two tools (
create_transaction,add_transaction_note) should now be available in any new conversation.
POC test sequence
In a new Claude session with the connector enabled:
Ask: "Create a test transaction in Aframe for 100 Main Street, Richmond, VA 23220, buyer side."
Claude calls
create_transaction, returns the new transaction IDAsk: "Add a note to that transaction saying 'POC test from Claude session — [timestamp]'"
Claude calls
add_transaction_noteusing the ID from step 2Open Aframe → confirm the transaction exists and the note is attached
If both steps land, the connector is working.
Auth note
This POC runs authless — anyone who knows the Railway URL can call the MCP server. This is acceptable for short-lived POC testing because the Railway subdomain is effectively unguessable, but it is not suitable for production.
The reason: Claude.ai's custom connector UI does not currently support user-pasted bearer tokens (per the connector auth docs). For production use, the connector will need to implement OAuth 2.1 with PKCE — that's a Phase 2 task.
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
Claude connector auth: https://claude.com/docs/connectors/building/authentication
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ChalkWorld/aframe-mcp-connector'
If you have feedback or need assistance with the MCP directory API, please join our Discord server