Skip to main content
Glama
axeldotdev

Headquarter

by axeldotdev

Headquarter

Headquarter is an open-source, AI-first business and project management tool. It uses a "Ghost" architecture where data is stored locally in human-readable Markdown and JSON files, exposed via the Model Context Protocol (MCP).

Installation

Download the latest binary for your platform from GitHub Releases:

Platform

File

macOS (Apple Silicon)

headquarter-macos-arm64.zip

macOS (Intel)

headquarter-macos-x64.zip

Linux

headquarter-linux-x64.tar.gz

Windows

headquarter-windows-x64.zip

Extract the archive and configure your MCP client (see below).

Install from Source (For Developers)

git clone https://github.com/axeldotdev/headquarter.git
cd headquarter
npm install
npm run build

Configure Your MCP Client

Add the server to your MCP client configuration. For Claude Desktop, edit your config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Using the binary (Quick Install):

{
  "mcpServers": {
    "headquarter": {
      "command": "/path/to/headquarter-macos-arm64"
    }
  }
}

Using Node.js (From Source):

{
  "mcpServers": {
    "headquarter": {
      "command": "node",
      "args": ["/path/to/headquarter/dist/index.js"]
    }
  }
}

Replace /path/to/... with the actual path to the binary or cloned repository.

Verify Installation

Restart Claude Desktop (or your MCP client) and the Headquarter tools should be available. You can test by asking Claude to list projects or create a new one.

Development

For debugging, use the MCP Inspector:

npm run inspect

To build binaries locally (requires Bun):

npm run build:bin

Related MCP server: Memory Bank MCP

🛠 Tech Stack

  • Language: Node.js with TypeScript (Strict Mode).

  • Architecture: Modular MCP Server + CLI.

  • Protocol: MCP SDK 1.25+

  • Data Format: Markdown with YAML Frontmatter (via gray-matter) and JSON.

  • Validation: Zod for schema definition and runtime type-safety.

  • Code Quality:

    • ESLint: Logic & Type checking (The "PHPStan").

    • Prettier: Formatting (The "Pint").

    • Husky: Git hooks for pre-commit linting.

Tools

  • list_projects

  • get_project(id)

  • create_project(name, content)

  • update_project(id, name, content)

  • delete_project(id)

  • list_issues(?project_id)

  • get_issue(id)

  • create_issue(name, content, status, priority)

  • update_issue(id, name, content, status, priority)

  • delete_issue(id)

  • list_clients

  • get_client(id)

  • create_client(name, address, website, email, phone)

  • update_client(id, name, address, website, email, phone)

  • delete_client(id)

  • list_contacts(?client_id)

  • get_contact(id)

  • create_contact(name, email, phone, job_title)

  • update_contact(id, name, email, phone, job_title)

  • delete_contact(id)

  • list_notes

  • get_note(id)

  • create_note(content)

  • update_note(id, content)

  • delete_note(id)

🚀 Current Roadmap

  • Initial Project structure & Git config.

  • Quality tools setup (ESLint, Prettier, Husky).

  • Server setup

  • Build every tools

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
0dRelease cycle
2Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    A Model Context Protocol plugin that helps AI assistants maintain persistent project context through structured markdown files, providing a systematic approach to tracking project goals, decisions, progress, and patterns.
    Last updated
    3
    89
    16
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    A comprehensive and efficient Model Context Protocol server for task management that works with Claude, Cursor, and other MCP clients, providing powerful search, filtering, and organization capabilities across multiple file formats.
    Last updated
    5
    32
    46
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    AI-native productivity backend that gives your AI assistant persistent memory, pattern awareness, and computed intelligence about your work. 14 MCP tools for task management, daily planning, weekly review, and personal context.
    Last updated
    MIT

View all related MCP servers

Related MCP Connectors

  • A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…

  • Private-by-default, local-first memory/context/task orchestrator for MCP apps and agents.

  • User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.

View all MCP Connectors

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/axeldotdev/headquarter-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server