Enhanciar MCP server

Query your company brain from Claude Code, Cursor, Claude Desktop or any MCP client.

Enhanciar is a remote MCP server (streamable HTTP). Point your client at it with an API key and your agent can search the wiki, ask cited questions, run impact analysis and propose actions — against the same brain your team uses in the app. Listed in the Official MCP Registry as in.enhanciar/enhanciar; graded A on Glama.

Early access: API keys are created in the app (Settings → API keys), so you need an account. Join the waitlist if you don’t have one yet.

Endpoint

TransportStreamable HTTP (MCP 2025-11-25)
URLhttps://enhanciar.in/enhanciar/mcp/
AuthHeader Authorization: Bearer dh_<your key>
WorkspaceChosen when you create the key. One key = one workspace; add a second server for a second workspace.

Set-up

Claude Code

claude mcp add --transport http --scope user enhanciar \
  https://enhanciar.in/enhanciar/mcp/ \
  --header "Authorization: Bearer dh_your_key"

Cursor

Settings → Tools & Integrations → New MCP server → type HTTP, URL https://enhanciar.in/enhanciar/mcp/, header Authorization: Bearer dh_your_key.

Claude Desktop

Claude Desktop’s Connectors UI cannot send a custom header, so bridge it with mcp-remote in claude_desktop_config.json:

{
  "mcpServers": {
    "enhanciar": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://enhanciar.in/enhanciar/mcp/",
               "--header", "Authorization: Bearer dh_your_key"]
    }
  }
}

Settings → Connections in the app has copy-paste snippets for each client with your key filled in.

Tools

ToolWhat it does
queryAsk a question in plain language; returns a synthesised answer with a citation on every claim (file:line, Slack permalink, doc paragraph).
search_wikiSearch the generated wiki.
get_page / list_pagesRead one wiki page in full; list every page the key can see.
impactBlast radius of changing a file, function or module: callers, callees, affected tests and pages, from the graph.
get_graphThe entity / community graph manifest.
get_process_mapHow a process actually runs across code, people and tools.
list_reposRepositories the workspace has ingested.
list_skills / get_skillReusable skills distilled from the codebase.
propose_action / list_proposed_actionsDraft a Jira, Linear, GitHub, Slack or calendar action into the review queue, and list what is waiting. The server can propose; only a person in the app can approve or execute.

What it can never do

Why a remote server and not a plugin

Every MCP client already knows how to talk to a remote server, so there is nothing to install or keep updated per editor. The registry entry, the health checks on Glama and the tool schemas are public, so you can inspect exactly what your agent gets before you connect. Questions: enhanciar@gmail.com.