Ramoira MCP Server
Exposes the Ramoira brand schema specification as MCP tools and resources, enabling LLMs to generate, validate, or reason about brand schemas without the CLI.
README
@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 |
|---|---|
get_spec_overview |
High-level explanation of the schema format, its five layers, and key concepts. Start here. |
get_layer_spec(layer) |
Full field definitions for one layer: identity, narrative, voice, commercial, or governance. |
get_valid_enums() |
All valid enum values for every constrained field, with field paths. |
get_example_schema() |
A high-quality worked example (Rolex) showing what well-populated fields look like. |
search_spec(query) |
Keyword search across all spec documentation. |
Resources
| URI | Description |
|---|---|
ramoira://spec |
Spec overview as a plain text resource. |
ramoira://enums |
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 generation
The 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/mcp
Or run directly without installing:
npx @ramoira/mcp
Configure 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/
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.