Merlin Project MCP Extension

Merlin Project MCP Extension

Read-only MCP bridge connecting Claude Desktop to Merlin Project on Mac, allowing natural-language queries about plans, activities, resources, and project data.

Category
Visit Server

README

Merlin Project MCP Extension

Read-only MCP access to the project documents open in Merlin Project on your Mac, packaged as a Claude Desktop Extension (.mcpb).

Ask about your plan, search activities, resources, assignments, risks, issues and attachments, and pull cost, work or earned-value figures over any date range — without leaving Merlin Project. The extension only ever reads: it never changes, saves or deletes anything in your documents. You choose which open document Claude may see at the start of each chat, via the MCP access popover in Merlin Project's toolbar.

Requirements

  • macOS
  • Merlin Project installed, running, and with MCP access enabled for the document you want Claude to read
  • Node.js 18 or newer (Claude Desktop supplies its own runtime)

Install

Build the extension archive from source, then open the resulting MerlinProject.mcpb with Claude Desktop, which will offer to install it:

npm install
npm run pack        # writes MerlinProject.mcpb

Merlin Project does not need to be running when you install the extension — Claude will see the full tool list either way, and connects to the app as soon as it is launched.

How it works

Merlin Project is sandboxed and runs its MCP server inside the app, listening on a Unix domain socket in its App Group container. This extension is the bridge between that socket and the stdio transport Claude Desktop speaks:

Claude  ⇄  stdio  ⇄  extension server  ⇄  extension client (cached)  ⇄  socket  ⇄  Merlin Project
  • tools/list / resources/list are answered locally from server/catalog.json, so Claude sees the full tool metadata even when Merlin Project isn't running.
  • tools/call / resources/read are forwarded to the live in-app server over the socket at ~/Library/Group Containers/9R6P9VZV27.net.projectwizards.merlinproject.mcp/mcp.sock (overridable via MERLIN_MCP_SOCKET for testing).
  • When Merlin Project isn't reachable, tool calls return a structured "not running" message telling the agent to ask you to launch the app. The extension retries the connect on every call, so it picks up the running app on the next request — no restart of Claude needed. It deliberately never launches Merlin Project by itself.
  • The extension advertises the live server's identity when Merlin Project is up at session start, and forwards the agent's real clientInfo on the socket handshake, so the app's connected-tools popover shows "Claude" rather than the extension.

The tools themselves — list_open_documents, set_current_document, get_schema_types, get_objects, find_objects, count_objects, list_related, get_media and get_time_phased_values — are implemented inside Merlin Project, not here. This repository contains only the bridge.

A Swift build of the same bridge ships with Merlin Project for use outside Claude Desktop. The two are behavior-identical and are kept in sync; the file headers here name their Swift counterparts. Unlike the Swift build, this one holds no App Group entitlement and simply constructs the container path directly, which works for unsandboxed processes.

Files

  • manifest.json — MCPB manifest (server.type: "node").
  • server/index.js — entry point; stdio-facing MCP server.
  • server/bridge.js — connection cache, socket transport, forwarding logic.
  • server/catalog.json — generated snapshot of the live server's tools/list / resources/list. Do not edit by hand.
  • scripts/generate-catalog.js — regenerates server/catalog.json from a running build.
  • scripts/test-e2e.js — end-to-end tests (live forwarding, app-down fallback, mid-session recovery).

Development

npm install                  # once, and after dependency changes
npm run generate-catalog     # after the app's tool metadata changes; needs Merlin Project running
npm test                     # phase A needs Merlin Project running; B and C are self-contained
npm run pack                 # builds MerlinProject.mcpb

Merlin Project itself is the single source of truth for tool and resource metadata: server/catalog.json is generated by asking a running app for its tools/list and resources/list and snapshotting the responses verbatim. It is committed so that packaging the extension needs no running app. Regenerate it and re-pack whenever the app's tool metadata changes.

License

MIT — see LICENSE.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured