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. |
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
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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