rnr-mcp-server
Version:
A Model Context Protocol (MCP) server for React Native Reusables components, providing AI assistants with access to component source code, demos, and metadata for React Native development.
25 lines (24 loc) • 820 B
JavaScript
import { getAxiosImplementation } from '../../utils/framework.js';
import { logError } from '../../utils/logger.js';
export async function handleListBlocks({ category }) {
try {
const axios = await getAxiosImplementation();
const blocks = await axios.getAvailableBlocks(category);
return {
content: [{
type: "text",
text: JSON.stringify(blocks, null, 2)
}]
};
}
catch (error) {
logError('Failed to list blocks', error);
throw new Error(`Failed to list blocks: ${error instanceof Error ? error.message : String(error)}`);
}
}
export const schema = {
category: {
type: 'string',
description: 'Filter by category (calendar, dashboard, login, sidebar, products)'
}
};