Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Constructoo Server

FreeNot checked

Mock MCP server for validating Constructoo Copilot data access, exposing read-only tools like counting customer properties, retrieving project status, and fetch

GitHubEmbed

About

Mock MCP server for validating Constructoo Copilot data access, exposing read-only tools like counting customer properties, retrieving project status, and fetching appointments.

README

Standalone mock MCP server for validating Constructoo Copilot data access through an Agent Builder MCP node.

Goal

Validate this chain before the production backend is ready:

ChatKit UI
-> Agent Builder workflow
-> MCP node
-> Constructoo MCP server
-> mock Constructoo data

Mock Tools

Read-only tools exposed by this server:

  • count_customer_properties
  • get_customer_properties
  • get_project_status
  • get_today_appointments

Run Locally

npm install
npm run dev

Local endpoint:

http://127.0.0.1:8788/api/mcp

Quick metadata check:

curl http://127.0.0.1:8788/api/mcp

Tool call example:

curl -X POST http://127.0.0.1:8788/api/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"count_customer_properties","arguments":{"customerName":"Charlie"}}}'

Expected result:

{
  "customerName": "Charlie",
  "propertyCount": 2
}

Deploy

Deploy this folder as its own Vercel project.

After deployment, use this URL in Agent Builder's MCP node:

https://YOUR_VERCEL_DOMAIN/api/mcp

Agent Instruction Suggestion

When the user asks about Constructoo customers, properties, projects, appointments, or project status, use the Constructoo MCP tools. Do not guess app data.

Notes

  • This server intentionally uses mock in-memory data only.
  • Do not add write/update tools until read-only MCP access is verified.
  • Production should replace mock data with real backend calls or move this MCP endpoint into the backend.

from github.com/fgambling/mcp-server

Installing Constructoo Server

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/fgambling/mcp-server

FAQ

Is Constructoo Server MCP free?

Yes, Constructoo Server MCP is free — one-click install via Unyly at no cost.

Does Constructoo Server need an API key?

No, Constructoo Server runs without API keys or environment variables.

Is Constructoo Server hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Constructoo Server in Claude Desktop, Claude Code or Cursor?

Open Constructoo Server 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

Compare Constructoo Server with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs