Onplana MCP Server

Open-source MCP server template + Onplana MCP client SDK. Workspace root; do not publish.

Remote serverstreamable-httpTypeScript

What is the Onplana MCP server?

Open-source MCP server template + Onplana MCP client SDK. Workspace root; do not publish. Exposed over MCP by the onplana mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

Open-source TypeScript Model Context Protocol building blocks, extracted from Onplana's production MCP deployment. Two packages:

  • Prompt injection. — Tools that return user-generated content
  • Stateless transport. — Most SDK examples assume in-memory session
  • Plan-gate semantics. — Surfacing tools the caller can't actually

Its toolset

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

  • Plan — gate semantics.** Surfacing tools the caller can't actually
  • Per — token rate limiting.** 60–120 req/min per Bearer token;

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.

Configuration

You will need one environment variable: ONPLANA_PAT. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

When to reach for it

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Onplana's toolset — Plan, Per — is a fair guide to whether it matches your workflow. It is maintained by onplana; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the onplana mcp server does with a few real requests.

Available tools

ToolWhat it does
Plangate semantics.** Surfacing tools the caller can't actually
Pertoken rate limiting.** 60–120 req/min per Bearer token;

How to install the Onplana MCP server

{
  "mcpServers": {
    "onplana": {
      "command": "npx",
      "args": ["-y", "github"],
      "env": {
        "ONPLANA_PAT": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
ONPLANA_PATConfiguration value read at startup.Optional

Example prompts to try

  • Use Onplana to Plan.
  • Use Onplana to Per.

Frequently asked questions

It connects Onplana to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (Plan, Per) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Onplana directly.