Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. Developer Tools
  3. Tabnas
T
Health: Not checked yetWe have not completed a health check for this listing yet.No health check has run yet.

Tabnas

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Seven tools over the tabnas parsing engine: parse, validate, diagnose, fixtures, compare.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "tabnas": {
      "command": "npx",
      "args": [
        "-y",
        "tabnas"
      ]
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

tabnas/mcp

The tabnas agent tooling: one TypeScript codebase, two front-ends β€” an MCP server (stdio) and the unified tabnas CLI β€” sharing a single core (ts/src/core.ts) so the two can never disagree. For each operation the CLI's --json output and the MCP tool result are byte-identical, and the test suite holds them to it.

The website page for this package β€” per-client setup, the tool contracts, the hosted endpoint's bounds: tabnas.dev/mcp.

Published as @tabnas/mcp. This repo is TypeScript-only: it is tooling over the engine, not a parity package, so there is no Go port.

Install

Terminal
npm install -g @tabnas/mcp     # the `tabnas` CLI
npx --yes @tabnas/mcp          # run the MCP server directly (stdio)

MCP client configuration (stdio):

config.json
{
  "mcpServers": {
    "tabnas": {
      "command": "npx",
      "args": ["--yes", "@tabnas/mcp@<x.y.z>", "mcp"]
    }
  }
}

Fill in <x.y.z> with the current version β€” npm view @tabnas/mcp version. This README does not name it: a repo cannot carry an exact pin of its own published version, because the commit that updates it becomes the next release's content, leaving it one release behind forever.

The server is started by the mcp subcommand of the CLI (tabnas mcp), which is exactly what the skills package's mcp.json invokes as npx --yes @tabnas/mcp@<x.y.z> mcp. (--yes matters: on a cache miss npx would otherwise prompt on the stdin the MCP transport owns. Pin an exact version so the tools cannot drift under an installed client β€” skills/mcp.json carries the real one, written from the registry by its tools/sync-mcp-pin.js and checked by tools/validate.js --online.)

The seven tools

ToolAnswersResult
parsedoes this input parse, and to what tree?{ok:true, tree} | {ok:false, diagnostic}
validate_grammaris this serialized GrammarSpec valid?{ok:true, v} | {ok:false, errors:[{path,message}]}
explain_parse_errorwhy did this parse fail?{failed:false} | {failed:true, diagnostic, registry}
test_grammardo these TSV fixtures pass?{pass, fail, rows:[{row,input,expected,got,ok}]}
list_pluginswhat grammar plugins exist?{plugins:[...]}
describe_pluginone plugin's full descriptorthe tabnas.plugin.json object
compare_grammarsdoes a grammar change still accept what the old one accepted, and build the same trees?{normalForm, proven[], observed[], changes[], counterexamples[], confidence, why}

Notes on the contracts:

  • Every operation builds a fresh engine instance per call. parse applies options first, then grammar. With no grammar the instance is exactly what new Tabnas() gives β€” the bare engine defines no rules, so every input yields an undefined tree (serialized as {"ok":true}).
  • A grammar argument is validated before it is used, by every operation that accepts one; an invalid grammar is rejected with the validate_grammar error shape {ok:false, errors:[{path,message}]}.
  • validate_grammar layers: an ADR-10 security scan (below), structural validation against the bundled grammar.schema.json (Ajv, draft 2020-12), then an engine load in a fresh instance whose thrown message becomes the error. v is the grammar's declared builtin config-schema version (absent means 1).
  • Security (ADR-10): a serialized grammar and its options are data, never code. A firewall runs first on every grammar-accepting op and on request options, rejecting: any own key named __proto__, constructor, or prototype anywhere in the tree (prototype-pollution defense β€” the engine's grammar merge has no __proto__ guard); a ref key (live functions are not JSON); any function reference that is not a $-suffixed engine builtin; a plugins key, whether a request option or inside grammar.options (a plugin is live code); and grammars over 5000 rules (a CPU bound). "Validate this grammar" never becomes "run this code", or "pollute this process".
  • A non-diagnostic engine throw (e.g. options.parser.start set to a non-function) is caught and returned as the same clean {ok:false, errors:[{path:"",message}]} shape, so the CLI and the MCP tool agree.
  • explain_parse_error joins the diagnostic with the bundled error-code registry entry ({code, message, hint}); registry is null for a code the registry does not know (e.g. a plugin-declared code).
  • test_grammar takes TSV content in the fleet fixture convention (@tabnas/support): line 1 is a header, the input column is escape-decoded, the expected column is JSON or ERROR / ERROR:<code>. Columns default to positions 0 and 1; options.inputCol / options.expectedCol select by position or header name. Specs over 10000 rows are refused.

MCP resources (served verbatim from the bundled data/): tabnas://schema/grammar, tabnas://schema/diagnostic, tabnas://errors, tabnas://plugins, tabnas://divergence.

CLI

Code
tabnas parse    [file|-] [--grammar g.json] [--json]
tabnas validate --grammar g.json [--json]
tabnas diagnose [file|-] [--grammar g.json] [--json]
tabnas test     --spec fixtures.tsv [--grammar g.json] [--json]
tabnas plugins  [name] [--json]
tabnas compare  --a old.json --b new.json [--corpus dir|file] [--depth n] [--json]
tabnas mcp                                        # run the MCP server (stdio)

Input comes from file, or stdin when the argument is - or absent. The CLI never touches the network. tabnas mcp starts the stdio MCP server (the same server as npx @tabnas/mcp); it speaks JSON-RPC on stdout and prints nothing else there.

--json prints exactly the core result JSON β€” the same bytes the MCP tool returns for the same request (stable key order; the golden contract, enforced by ts/test/golden.test.js). Without --json you get a readable rendering; a parse failure prints the engine's own rendered error message.

Exit codes:

CodeMeaning
0success: parse succeeded / grammar valid / all fixture rows passed
1the operation said no: parse failure, invalid grammar, fixture failures, unknown plugin
2usage error: unknown flags or command, missing/unreadable files, malformed grammar JSON

Passing a grammar that isn't already a GrammarSpec

Every tool takes a serialized GrammarSpec β€” pure JSON. It does not take ABNF, EBNF, GBNF or jsonic source, and it never will: compiling those means running a compiler, and the tools' one hard rule is that a grammar is data, never code (ADR-10). Compile first, then pass the result.

server.ts
const { abnfConvert, toPureSpec } = require('@tabnas/abnf')

const spec = toPureSpec(abnfConvert(abnfSource, { builtins: true }))
// -> { options, rule, v, meta } β€” validates clean, safe to send

Use toPureSpec. It is the function for this, and the two obvious alternatives are both wrong:

  • abnfCompile() returns jsonic text, not an object. Useful for writing a grammar file; not what a tool argument wants.
  • abnfConvert() alone returns a spec carrying ref (empty, when converted with builtins: true) and mark fields. The firewall rejects the presence of ref, not just its contents β€” deliberately, since "empty enough" is not a property worth reasoning about at a security boundary β€” and m marks are not part of the serialized form. toPureSpec strips both and stamps v.

toRecognitionSpec is the same thing for a grammar that only needs to decide accept/reject, without the tree-building builtins.

The equivalent for the other front-ends is tabnas parse --grammar g.json, where g.json is whatever your build step wrote.

Grammar compatibility (compare)

Two questions, reported separately, because they fail differently:

  1. Acceptance β€” does the candidate still accept what the baseline accepted?
  2. Output β€” for inputs both accept, is the resulting tree the same?

The second is the one users feel. A change that still accepts every historical document but reshapes the tree silently breaks every downstream consumer, and an acceptance-only test reports success.

The report carries evidence and confidence, never a bare verdict. There is deliberately no compatible: true field. Language inclusion is undecidable in general, so a tool that printed one would eventually be wrong in production:

  • proven[] β€” what was established statically, and on what basis. Anything outside the decidable subset is not-proven, which is a statement about this tool, not a claim that the grammars are incompatible.
  • observed[] β€” what actually ran, and how much of it.
  • changes[] / counterexamples[] β€” concrete differences, with inputs.
  • confidence + why β€” how much weight the absence of findings can bear. confidence: "low" with a stated reason is a successful run.

The check that earns its keep is alternate ordering. Alternates are first-match-wins, so one inserted earlier can shadow a later one and narrow the accepted language while a set comparison calls it an addition. compare walks positions, not membership, and reports a shadowed alternate that used to be reachable.

--corpus takes a .tsv fixture file or a directory of them, loaded through @tabnas/support β€” the same loader the fixture runners use. Real inputs are the only tier that measures what your documents actually do:

bash
tabnas compare --a v1.json --b v2.json --corpus ../json/test/spec

Exit code is 1 when any change is found, so it works as a release gate.

The hosted endpoint

mcp.tabnas.dev serves the same seven tools over streamable HTTP (POST /mcp, plus GET /health and GET /.well-known/mcp), for agents that cannot run npx. Local stdio stays the recommended path β€” it is free, private, reproducible and unlimited.

Read the full README on GitHub β†’

Related MCP Servers

View all in Developer Tools View all alternatives
  • Payram Helper MCP Server logoPayram Helper MCP Server

    Remote MCP server to integrate and validate self-hosted Payram deployments.

    πŸ’» Developer Tools1 views
    Compare vs Payram Helper MCP Server β†’
  • PraisonAI logoPraisonAI

    AI Agents Framework with Self Reflection and MCP support

    πŸ’» Developer Tools1 views
    Compare vs PraisonAI β†’
  • Labelhead Artist Momentum logoLabelhead Artist Momentum

    Trending hip-hop artist momentum scores across four cultural dimensions.

    πŸ’» Developer Tools0 views
    Compare vs Labelhead Artist Momentum β†’
  • Ignite UI MCP Server logoIgnite UI MCP Server

    Unified MCP server for Ignite UI β€” documentation, API, and CLI scaffolding

    πŸ’» Developer Tools1 views
    Compare vs Ignite UI MCP Server β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about Tabnas

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "tabnas": { "command": "npx", "args": ["-y", "tabnas"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewTabnas AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/tabnas?style=directory)](https://allmcps.com/mcp/tabnas)
HTML Embed
<a href="https://allmcps.com/mcp/tabnas"><img src="https://allmcps.com/api/badge/tabnas?style=directory" alt="Tabnas on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Tabnas β†’Install in Claude DesktopInstall in CursorInstall in VS Code