mcp-resource-uri-designer

Solid

Design and implement MCP resource URI schemes and templates with proper naming, hierarchy, and documentation.

AI & Automation 814 stars 53 forks Updated today MIT

Install

View on GitHub

Quality Score: 95/100

Stars 20%
97
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# MCP Resource URI Designer Design and implement resource URI schemes for MCP servers. ## Capabilities - Design URI schemes for resources - Create URI template patterns - Generate URI parsing utilities - Document resource hierarchies - Implement content type mapping - Create resource discovery ## Usage Invoke this skill when you need to: - Design URI schemes for MCP resources - Create URI template patterns - Implement resource hierarchies - Document resource APIs ## Inputs | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | domain | string | Yes | Resource domain (e.g., files, database) | | resources | array | Yes | Resource definitions | | language | string | No | Implementation language (default: typescript) | ### Resource Structure ```json { "domain": "database", "resources": [ { "pattern": "db://{database}/tables/{table}", "name": "Database Table", "description": "Access database table schema and data", "mimeType": "application/json", "parameters": { "database": { "description": "Database name" }, "table": { "description": "Table name" } } } ] } ``` ## Generated Patterns ### TypeScript URI Handler ```typescript import { Resource, ResourceTemplate } from '@modelcontextprotocol/sdk/types.js'; // URI Templates const URI_TEMPLATES = { table: 'db://{database}/tables/{table}', schema: 'db://{database}/schema', query: 'db://{database}/query/{queryId}', }...

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Integrates with

Related Skills