mcp-server-reference
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-server-referenceList all available catalog operations."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-server-reference
Ungoverned MCP is an uncatalogued API, one layer up.
A small Model Context Protocol server that publishes a static OpenAPI catalog, a written contract, and an explicit deny-list. It is a reference surface — not a platform and not a SaaS.
Bruno Carvalho de Aquino, Solutions Architect.
MCP host (Cursor, Claude, …)
|
| stdio
v
+---------------------------+
| mcp-server-reference |
| |
| tools = catalog lookup |
| resources = contract |
| deny-list = interface |
+---------------------------+
|
| imported modules only
v
orders | identity | billing
(OpenAPI snippets, no fetch)Problem
Teams are wiring MCP servers the way they once wired shadow APIs: a process, a few powerful tools, no inventory, no owner, no statement of what the process must not do.
A tool that accepts a URL is an HTTP proxy. A tool that accepts a shell string is remote code execution. A tool that dumps process.env is credential exfiltration. The protocol does not make those shapes safe. Naming them "tools" just hides them from the people who review APIs.
Related MCP server: swag
What this repository is
Piece | Role |
TypeScript MCP server ( | stdio process a host can spawn |
Five tools | list / lookup / describe. No execution. |
Four resources | contract, deny-list, catalog index, per-API spec |
Human manifest of the surface | |
Closed list of capabilities that will not be added | |
Why the deny-list is part of the interface |
The catalog is three lab OpenAPI documents compiled into the process (orders, identity, billing). Spec servers[] use the .invalid TLD. The process never fetches them.
What this repository is not
Not Apidex. Apidex is the product-shaped answer (inventory, lifecycle, MCP governance). This repo is the public wedge: one honest server and a written no.
Not an MCP security gateway. No OAuth, no per-principal allowlist, no audit shipping. That is a later box.
Not a customer case study. No invented counts of servers, tokens, or "shadow MCP reduced by N%".
Constraints
Node 20+. TypeScript strict. No runtime filesystem walk. No
fetch. Nochild_process.Tool inputs are closed: slugs, HTTP methods, exact path templates, deny-list enums.
billingis deprecated on purpose. A catalog that hides sunset APIs is how integrations rot.Identity's published slice has no password or token endpoints. Restricted classification is metadata, not theatre.
Threat notes
Risk | How it shows up in MCP | Control here |
SSRF |
| No URL arguments. Specs are imported. |
RCE |
| Not implemented. |
Secret exfil |
| No env or path tools. No secrets in the repo. |
Prompt injection via specs | Remote OpenAPI that contains instructions | Catalog is reviewed git content. |
Confused deputy | Host user grants the server; model picks the tool | Small surface. Contract is listable. |
Shadow execution | Lookup tool that quietly calls the live API |
|
This is a threat note, not a full STRIDE model of a production estate. If you attach this server to a host, you still trust the host process and the model. Reducing that trust is gateway work.
How to run locally
npm install
npm test
npm run typecheck
npm run inspect # prints the contract JSON
npm run buildstdio server (what a host spawns):
npm start
# or, without a prior build:
npm run devDo not type into that process. MCP is JSON-RPC on stdin/stdout. Talk to it from a host.
Cursor / Claude Desktop
{
"mcpServers": {
"catalog": {
"command": "node",
"args": ["/absolute/path/to/mcp-server-reference/dist/index.js"]
}
}
}Build first. The host must be able to spawn Node. After connect, call inspect_contract or read mcp://contract.
Smoke without a host
npm run inspectYou should see the five tools, the four resources, and the seven deny-list ids.
Relation to API governance
OpenAPI governance already has a vocabulary: owner, lifecycle, breaking change, deprecation, "this operation is not public". MCP arrived and forgot that vocabulary.
API practice | MCP equivalent in this repo |
Published OpenAPI |
|
Path allowlist | Catalog ids + exact operation match |
"Do not expose /admin" | |
Deprecated API still listed |
|
Contract test in CI |
|
If you would fail a PR that adds an undocumented REST endpoint, fail the PR that adds an undocumented MCP tool.
The product-shaped version of this problem — inventory of APIs and MCP servers, lifecycle, review — is Apidex. This repository does not implement that. It shows the primitive a catalog would ingest: a server that can describe itself and state what it refuses.
Trade-off I accepted
A kitchen-sink demo is more impressive in a screenshot. It also trains the next engineer to add fetch "just for this". I chose a boring catalog so the deny-list is the point.
The cost: you cannot use this server to "do work". That is intentional. Execution is a different contract, with identity.
License
MIT. Copyright (c) 2026 Bruno Carvalho de Aquino.
Maintenance
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
- AlicenseNot gradedqualityAmaintenanceMCP server providing token-efficient access to OpenAPI/Swagger specs via MCP Resources for client-side exploration.15776MIT
- AlicenseNot gradedqualityAmaintenanceMCP server for loading and exploring OpenAPI/Swagger specifications, enabling AI assistants to dynamically browse API contracts by loading specs, searching endpoints, inspecting schemas, and retrieving operations.263MIT
- AlicenseAqualityBmaintenanceA read-only MCP server for navigating OpenAPI / Swagger specifications, enabling agents to search endpoints, retrieve parameters and schemas, and inspect authentication without loading the full spec into context.934MIT
Related MCP Connectors
APIs.guru MCP — keyless directory of 2,500+ public APIs and their OpenAPI specs.
MCP server for AI access to Swagger by SmartBear.
Remote MCP for A2A caller identity, scope policy, verdict receipts, and audit history.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/brunoaquino/mcp-server-reference'
If you have feedback or need assistance with the MCP directory API, please join our Discord server