get_component_example
Retrieve a React Native component example by specifying the component name using the BluestoneApps MCP Remote Server for quick reference and coding guidance.
Instructions
Get a React Native component example
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| component_name | Yes | Component Name |
Implementation Reference
- src/index.ts:232-295 (handler)The inline async handler function that implements the core logic of the get_component_example tool. It fetches React Native component example code by name, supporting exact and fuzzy matching, and returns markdown/text content.async ({ component_name }) => { if (!component_name) { return { content: [ { type: "text", text: "Component name not specified", }, ], }; } try { // First try exact match const result = getExampleContent("components", component_name); if (result.error) { // Try to find by fuzzy match const componentsDir = path.join(CODE_EXAMPLES_DIR, "react-native", "components"); const closestMatch = findClosestMatch(componentsDir, component_name); if (closestMatch) { const fuzzyResult = getExampleContent("components", closestMatch); return { content: [ { type: "text", text: fuzzyResult.content?.[0] ?? fuzzyResult.error ?? "Error: No content available", }, ], }; } else { return { content: [ { type: "text", text: `Component ${component_name} not found`, }, ], }; } } return { content: [ { type: "text", text: result.content?.[0] ?? result.error ?? "Error: No content available", }, ], }; } catch (err) { console.error(`Error getting component example ${component_name}:`, err); return { content: [ { type: "text", text: `Error getting component example: ${err}`, }, ], }; } }, );
- src/index.ts:230-231 (schema)Zod schema defining the input parameter 'component_name' for the tool.component_name: z.string().describe("Component Name"), },
- src/index.ts:226-296 (registration)MCP server tool registration for 'get_component_example', specifying name, description, input schema, and handler.server.tool( "get_component_example", "Get a React Native component example", { component_name: z.string().describe("Component Name"), }, async ({ component_name }) => { if (!component_name) { return { content: [ { type: "text", text: "Component name not specified", }, ], }; } try { // First try exact match const result = getExampleContent("components", component_name); if (result.error) { // Try to find by fuzzy match const componentsDir = path.join(CODE_EXAMPLES_DIR, "react-native", "components"); const closestMatch = findClosestMatch(componentsDir, component_name); if (closestMatch) { const fuzzyResult = getExampleContent("components", closestMatch); return { content: [ { type: "text", text: fuzzyResult.content?.[0] ?? fuzzyResult.error ?? "Error: No content available", }, ], }; } else { return { content: [ { type: "text", text: `Component ${component_name} not found`, }, ], }; } } return { content: [ { type: "text", text: result.content?.[0] ?? result.error ?? "Error: No content available", }, ], }; } catch (err) { console.error(`Error getting component example ${component_name}:`, err); return { content: [ { type: "text", text: `Error getting component example: ${err}`, }, ], }; } }, );
- src/index.ts:65-84 (helper)Key helper function used by the handler to load example file content from resources/code-examples/react-native/{subcategory} directories.function getExampleContent(subcategory: string, filename: string): { content?: string[]; path?: string; error?: string } { const searchDir = path.join(CODE_EXAMPLES_DIR, "react-native", subcategory); const filePath = findFileInSubdirectories(searchDir, filename); if (!filePath || !fs.existsSync(filePath)) { return { error: `Example ${filename} not found` }; } try { const content = fs.readFileSync(filePath, 'utf8'); return { content: [content], path: path.relative(BASE_DIR, filePath) }; } catch (err) { console.error(`Error reading example ${filename}:`, err); return { error: `Error reading example ${filename}` }; } }
- src/index.ts:87-109 (helper)Helper function for fuzzy matching of component names to available example files, used when exact match fails.function findClosestMatch(directory: string, searchName: string, extensions: string[] = ['.js', '.jsx', '.ts', '.tsx']) { if (!fs.existsSync(directory)) return null; let closestMatch = null; for (const ext of extensions) { const files = glob.sync(`${directory}/**/*${ext}`); for (const filePath of files) { const fileName = path.basename(filePath); const fileNameNoExt = path.basename(fileName, path.extname(fileName)); if (fileNameNoExt.toLowerCase().includes(searchName.toLowerCase())) { closestMatch = fileNameNoExt; break; } } if (closestMatch) break; } return closestMatch; }