Lynxprompt MCP Server

MCP server for LynxPrompt — manage AI prompts, AGENTS.md and CLAUDE.md files via the Model Context Protocol

Remote serverstreamable-httpGo

What is the Lynxprompt MCP MCP server?

MCP server for LynxPrompt — manage AI prompts, AGENTS.md and CLAUDE.md files via the Model Context Protocol. Exposed over MCP by the lynxprompt mcp mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

A tiny bridge that exposes any LynxPrompt instance as an MCP server, enabling LLMs to browse, search, and manage AI configuration blueprints.

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

Its toolset

Everything the assistant can do here goes through one of these:

  • Type — What for
  • Resources — Browse blueprints, hierarchies, and user info read-only
  • Tools — Create, update, delete blueprints and manage hierarchies
  • Variable — Default
  • LYNXPROMPT_URLhttps://lynxprompt.com
  • LYNXPROMPT_TOKEN(required)
  • LISTEN_ADDR — 127.0.0.1:8080
  • MCP_AUTH_TOKEN(empty)
  • TRANSPORT(empty = HTTP)
  • Project — Description

Configuration

You will need 3 environment variables: LYNXPROMPT_URL, LYNXPROMPT_TOKEN, MCP_AUTH_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 10 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Lynxprompt MCP.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the lynxprompt mcp mcp server does with a few real requests.

When to reach for it

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Lynxprompt MCP's toolset — Type, Resources, Tools and 7 more — is a fair guide to whether it matches your workflow. It is maintained by geiserx; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
TypeWhat for
ResourcesBrowse blueprints, hierarchies, and user info read-only
ToolsCreate, update, delete blueprints and manage hierarchies
VariableDefault
LYNXPROMPT_URLhttps://lynxprompt.com
LYNXPROMPT_TOKEN_(required)_
LISTEN_ADDR127.0.0.1:8080
MCP_AUTH_TOKEN_(empty)_
TRANSPORT_(empty = HTTP)_
ProjectDescription

How to install the Lynxprompt MCP MCP server

{
  "mcpServers": {
    "lynxprompt": {
      "command": "npx",
      "args": ["-y", "lynxprompt-mcp"],
      "env": {
        "LYNXPROMPT_URL": "your-value",
        "LYNXPROMPT_TOKEN": "your-value",
        "MCP_AUTH_TOKEN": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
LYNXPROMPT_URLEndpoint or connection string the server talks to.Yes
LYNXPROMPT_TOKENCredential the server authenticates with.Yes
MCP_AUTH_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Lynxprompt MCP to Type.
  • Use Lynxprompt MCP to Resources.
  • Use Lynxprompt MCP to Tools.

Frequently asked questions

It connects Lynxprompt MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 10 tools (Type, Resources, Tools, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Lynxprompt MCP directly.