Skip to main content
Glama
NishikantaRay

Renderer MCP Server

Renderer MCP Server

npm version License: MIT Model Context Protocol

AI-powered assistant for the Renderer portfolio framework

Helps users explore documentation, validate configurations, generate templates, and customize their portfolios through natural language.

Features β€’ Installation β€’ Usage β€’ Tools β€’ Configuration


🌟 Features

  • πŸ“š Interactive Documentation - Search and explore Renderer docs with natural language queries

  • βœ… Configuration Validation - Validate TOML configs with detailed error messages

  • 🎨 Template Generation - Generate starter templates customized to your needs

  • πŸ’‘ Smart Examples - Get configuration examples with explanations

  • πŸ” Feature Discovery - Search for specific Renderer features and capabilities

  • πŸ“– Setup Guides - Step-by-step guides for beginners and advanced users

  • πŸ—‚οΈ Repository Browser - Browse Renderer repository files and directories

Related MCP server: Components Build MCP

πŸ“¦ Installation

npm install -g renderer-mcp-server

From Source

git clone https://github.com/NishikantaRay/renderer-mcp-server.git
cd renderer-mcp-server
npm install
npm run build
npm link

πŸš€ Usage

With Claude Desktop

  1. Install the server:

    npm install -g renderer-mcp-server
  2. Configure Claude Desktop:

    Edit your Claude config file:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

    • Windows: %APPDATA%\Claude\claude_desktop_config.json

    Add the server configuration:

    {
      "mcpServers": {
        "renderer": {
          "command": "renderer-mcp",
          "env": {
            "GITHUB_TOKEN": "your_github_token_here"
          }
        }
      }
    }
  3. Get a GitHub Token (Optional but recommended):

  4. Restart Claude Desktop

With Other MCP Clients

Any MCP-compatible client can use this server:

import { Client } from "@modelcontextprotocol/sdk/client/index.js";

const client = new Client({
  name: "my-client",
  version: "1.0.0",
});

// Connect to the server
await client.connect({
  command: "renderer-mcp",
  env: {
    GITHUB_TOKEN: process.env.GITHUB_TOKEN,
  },
});

πŸ› οΈ Available Tools

1. explore_renderer_docs

Search and explore Renderer framework documentation.

Query: "How do I configure dark mode?"
Returns: Relevant documentation sections

2. get_renderer_file

Get contents of specific files from the Renderer repository.

Path: "config/home.toml"
Returns: File contents with syntax highlighting

3. list_renderer_files

List files and directories in the Renderer repository.

Path: "config"
Returns: Directory listing with file types

4. validate_toml_config

Validate TOML configuration files.

Config Content: "[profile]\nname = 'John'"
Config Type: "home"
Returns: Validation results with suggestions

5. generate_starter_template

Generate customized starter templates.

Input: { name: "John Doe", github: "johndoe", include_projects: true }
Returns: Complete project structure and configs

6. get_config_example

Get example configurations with explanations.

Config Type: "projects"
Returns: Annotated example configuration

7. search_renderer_features

Search for specific features.

Feature: "analytics"
Returns: Feature documentation and examples

8. get_setup_guide

Get setup instructions.

Level: "beginner" | "advanced"
Returns: Step-by-step setup guide

πŸ“‹ Configuration

Environment Variables

  • GITHUB_TOKEN (optional): GitHub personal access token for higher API rate limits

    • Without token: 60 requests/hour

    • With token: 5000 requests/hour

    • Scope required: public_repo

Custom Repository

By default, the server connects to NishikantaRay/renderer. To use a fork or different repository:

Edit src/constants.ts:

export const DEFAULT_CONFIG: RendererConfig = {
    owner: "your-username",
    repo: "your-repo",
    branch: "main"
};

πŸ“ Project Structure

renderer-mcp-server/
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ index.ts           # Main server entry point
β”‚   β”œβ”€β”€ types.ts           # TypeScript type definitions
β”‚   β”œβ”€β”€ constants.ts       # Tool definitions and config
β”‚   β”œβ”€β”€ github.ts          # GitHub API interactions
β”‚   └── tools/             # Tool implementations
β”‚       β”œβ”€β”€ validator.ts   # TOML validation
β”‚       β”œβ”€β”€ template.ts    # Template generation
β”‚       β”œβ”€β”€ examples.ts    # Configuration examples
β”‚       β”œβ”€β”€ features.ts    # Feature search
β”‚       └── guides.ts      # Setup guides
β”œβ”€β”€ build/                 # Compiled JavaScript
β”œβ”€β”€ package.json
β”œβ”€β”€ tsconfig.json
└── README.md

πŸ”§ Development

Prerequisites

  • Node.js 18 or higher

  • npm or yarn

  • TypeScript 5.3+

Setup

# Clone the repository
git clone https://github.com/NishikantaRay/renderer-mcp-server.git
cd renderer-mcp-server

# Install dependencies
npm install

# Build
npm run build

# Watch mode (for development)
npm run watch

Testing

# Build the project
npm run build

# Test with MCP inspector
npx @modelcontextprotocol/inspector renderer-mcp

πŸ“ Example Interactions

Generate a Portfolio

User: "Create a portfolio template for John Doe with GitHub and LinkedIn"

Server: Generates complete starter template with:

  • Customized TOML configurations

  • Project structure

  • Setup instructions

  • Next steps

Validate Configuration

User: "Validate this TOML: [profile]\nname = 'Jane'"

Server:

  • βœ… Validates syntax

  • Checks for required fields

  • Provides suggestions

  • Shows parsed structure

Explore Features

User: "How do I add dark mode to my portfolio?"

Server: Returns documentation about:

  • Theme configuration

  • Available options

  • Implementation details

  • Code examples

🀝 Contributing

Contributions are welcome! Please follow these steps:

  1. Fork the repository

  2. Create a feature branch: git checkout -b feature/amazing-feature

  3. Make your changes

  4. Add tests if applicable

  5. Commit: git commit -m 'Add amazing feature'

  6. Push: git push origin feature/amazing-feature

  7. Open a Pull Request

Development Guidelines

  • Follow TypeScript best practices

  • Keep functions small and focused

  • Add JSDoc comments for public APIs

  • Update README for new features

  • Test thoroughly before submitting

πŸ“„ License

MIT License - see LICENSE file for details

πŸ’¬ Support

πŸ™ Acknowledgments


Made with ❀️ by Nishikanta Ray

⭐ Star this repo if you find it helpful!

A
license - permissive license
-
quality - not tested
D
maintenance

Maintenance

–Maintainers
–Response time
–Release cycle
–Releases (12mo)
Commit activity

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

  • -
    license
    -
    quality
    -
    maintenance
    Enables AI assistants to generate professional documentation using structured templates based on the POWER framework. Provides access to standardized templates for README, architecture, API, components, and schema documentation.
  • A
    license
    B
    quality
    D
    maintenance
    Provides AI assistants with tools to grade, generate, and validate UI components against the components.build specification. Supports searching documentation, checking compliance, and generating framework-agnostic accessible components.
    11
    8
    Apache 2.0
  • A
    license
    A
    quality
    C
    maintenance
    Enables AI assistants to navigate and query hierarchical documentation structures, supporting markdown files with YAML metadata and OpenAPI 3.x specifications. It features intelligent full-text search, metadata filtering, and a built-in web interface for both human and AI-driven documentation access.
    6
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    A Retrieval Augmented Generation system that enables AI assistants to perform semantic searches and manage document indices for markdown files. It supports PostgreSQL with pgvector and integrates both Google Gemini and Ollama for intelligent embedding generation.
    1
    MIT

View all related MCP servers

Related MCP Connectors

  • Generate PDFs from templates via AI chat. Works with Claude, ChatGPT, Cursor, and any MCP client.

  • Connect AI assistants to your GitHub-hosted Obsidian vault to seamlessly access, search, and analy…

  • Renders interactive Chart.js charts and dashboards inline in AI conversations.

View all MCP Connectors

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/NishikantaRay/renderer-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server