library/specializations/cli-mcp-development/skills/mcp-capability-declarator/SKILL.md
Generate MCP capability declarations from tool and resource inventory with proper versioning and feature flags.
npx skillsauth add a5c-ai/babysitter mcp-capability-declaratorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Generate MCP capability declarations from tool/resource inventory.
Invoke this skill when you need to:
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | serverName | string | Yes | Server name | | version | string | Yes | Server version | | tools | array | No | Tool capabilities | | resources | array | No | Resource capabilities | | prompts | array | No | Prompt capabilities |
import { ServerCapabilities, InitializationOptions } from '@modelcontextprotocol/sdk/types.js';
// Server metadata
export const SERVER_INFO = {
name: 'my-mcp-server',
version: '1.0.0',
} as const;
// Capability declarations
export const CAPABILITIES: ServerCapabilities = {
tools: {
// Tool capabilities
listChanged: true,
},
resources: {
// Resource capabilities
subscribe: true,
listChanged: true,
},
prompts: {
// Prompt capabilities
listChanged: true,
},
logging: {},
};
// Tool definitions
export const TOOL_DEFINITIONS = [
{
name: 'search_files',
description: 'Search for files matching a pattern',
inputSchema: {
type: 'object',
properties: {
pattern: { type: 'string', description: 'Glob pattern' },
path: { type: 'string', description: 'Base path' },
},
required: ['pattern'],
},
},
{
name: 'read_file',
description: 'Read contents of a file',
inputSchema: {
type: 'object',
properties: {
path: { type: 'string', description: 'File path' },
},
required: ['path'],
},
},
] as const;
// Resource templates
export const RESOURCE_TEMPLATES = [
{
uriTemplate: 'file:///{path}',
name: 'File',
description: 'Access file contents',
mimeType: 'text/plain',
},
] as const;
// Create initialization options
export function createInitializationOptions(): InitializationOptions {
return {
serverInfo: SERVER_INFO,
capabilities: CAPABILITIES,
};
}
// Capability documentation
export const CAPABILITY_DOCS = `
# ${SERVER_INFO.name} v${SERVER_INFO.version}
## Supported Capabilities
### Tools
${TOOL_DEFINITIONS.map(t => `- **${t.name}**: ${t.description}`).join('\n')}
### Resources
- File access via \`file:///\` URI scheme
- Resource subscription support
- List change notifications
### Prompts
- Dynamic prompt templates
- List change notifications
## Feature Flags
- Tool list change notifications: enabled
- Resource subscriptions: enabled
`;
from dataclasses import dataclass
from typing import List, Dict, Any
@dataclass
class ServerInfo:
name: str = "my-mcp-server"
version: str = "1.0.0"
@dataclass
class ToolDefinition:
name: str
description: str
input_schema: Dict[str, Any]
TOOL_DEFINITIONS: List[ToolDefinition] = [
ToolDefinition(
name="search_files",
description="Search for files matching a pattern",
input_schema={
"type": "object",
"properties": {
"pattern": {"type": "string"},
"path": {"type": "string"},
},
"required": ["pattern"],
},
),
]
CAPABILITIES = {
"tools": {"listChanged": True},
"resources": {"subscribe": True, "listChanged": True},
"prompts": {"listChanged": True},
"logging": {},
}
def create_initialization_options() -> dict:
return {
"serverInfo": {
"name": ServerInfo.name,
"version": ServerInfo.version,
},
"capabilities": CAPABILITIES,
}
development
Model documentation skill for generating model cards following Google's model card framework.
development
MLflow integration skill for experiment tracking, model registry, and artifact management. Enables LLMs to log experiments, compare runs, manage model lifecycle, and retrieve artifacts through the MLflow API.
data-ai
LIME-based local explanation skill for individual predictions across tabular, text, and image data.
devops
Kubeflow Pipelines skill for ML workflow orchestration, component management, and Kubernetes-native ML.