Ramoira MCP Server
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., "@Ramoira MCP ServerCan you give me an overview of the Ramoira brand schema?"
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.
@ramoira/mcp
MCP server exposing the Ramoira brand schema specification as tools and resources.
Any MCP-compatible client (Claude Desktop, Cursor, Windsurf, etc.) can connect to this server and use it to generate, validate, or reason about Ramoira brand schemas — without needing the CLI installed.
What it exposes
Tools
Tool | Description |
| High-level explanation of the schema format, its five layers, and key concepts. Start here. |
| Full field definitions for one layer: |
| All valid enum values for every constrained field, with field paths. |
| A high-quality worked example (Rolex) showing what well-populated fields look like. |
| Keyword search across all spec documentation. |
Resources
URI | Description |
| Spec overview as a plain text resource. |
| Valid enum values as a JSON resource. |
Related MCP server: OpenAPI MCP Server
How it fits into Ramoira
ramoira/brand-schema-spec ← the spec (source of truth)
│
▼
ramoira/mcp ← this package
serves the spec as MCP tools so any LLM can consume it
│
├─► Claude Desktop / Cursor / any MCP client
│ Any LLM session can look up the spec on demand
│
└─► ramoira/cli (internally)
ramoira init uses the same tool set locally
to give Claude spec access during schema generationThe CLI's generator mirrors this tool set locally (no network dependency) so ramoira init works offline. This server is for external LLM workflows — any agent that needs to generate or validate a schema can connect here instead of inlining the spec in its prompt.
Install
npm install -g @ramoira/mcpOr run directly without installing:
npx @ramoira/mcpConfigure in Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"ramoira": {
"command": "npx",
"args": ["@ramoira/mcp"]
}
}
}Configure in Cursor / VS Code
Add to your MCP settings:
{
"ramoira": {
"command": "npx",
"args": ["@ramoira/mcp"]
}
}Public HTTP hosting
The server currently uses stdio transport, which works for local clients. To serve it publicly over HTTP, replace the transport in src/server.ts:
import { StreamableHTTPServerTransport } from "@modelcontextprotocol/sdk/server/streamableHttp.js";
const transport = new StreamableHTTPServerTransport({ port: 3000 });
await server.connect(transport);Then deploy to any Node.js host. Clients connect to https://mcp.ramoira.com (or wherever it's hosted) via the MCP HTTP client.
Development
npm install
npm run dev # run via tsx (no build step)
npm run build # compile to dist/This server cannot be installed
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 gradedqualityFmaintenanceA MCP server that exposes OpenAPI schema information to LLMs like Claude. This server allows an LLM to explore and understand large OpenAPI schemas through a set of specialized tools, without needing to load the whole schema into the context11350MIT
- AlicenseNot gradedqualityDmaintenanceExposes OpenAPI specifications as MCP tools, enabling AI assistants to explore and understand API structures, endpoints, schemas, and documentation through semantic queries.28MIT
- AlicenseAqualityNot gradedmaintenanceExposes structured prompt generation tools for refactoring protocol and governance specifications via MCP, enabling teams to generate, validate, and retrieve standardized refactoring prompts through automation scripts and HTTP APIs.7
- AlicenseAqualityDmaintenanceExposes the Agentic Patterns Catalog as MCP resources and tools for AI coding agents to search, retrieve, and recommend patterns, recipes, frameworks, methodologies, and anti-patterns.12MIT
Related MCP Connectors
Free OpenAI-compatible inference with signed provenance receipts and 3 focused MCP tools.
MCP Spec Compliance MCP — audits any MCP server.json against the official Model Context Protocol
100+ MCP tools for AI agents: content metadata, trade intelligence, business-expertise analysis.
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/ramoira/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server