Mcp Component Finder — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp Component Finder (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
MCP (Model Context Protocol) server for finding component, function, and type usage in React/TypeScript projects. Perfect for use with Claude Code!
npm install --save-dev mcp-component-findernpx mcp-component-finder setupThis will give you two options:
.claude_config.json in your projectLocal setup is recommended as it keeps the MCP server configuration project-specific.
Create .claude_config.json in your project root:
{
"mcpServers": {
"component-finder": {
"command": "npx",
"args": ["mcp-component-finder"],
"env": {
"PROJECT_ROOT": "."
}
}
}
}This approach:
Add to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"component-finder": {
"command": "npx",
"args": ["mcp-component-finder"],
"env": {
"PROJECT_ROOT": "/path/to/your/project"
}
}
}
}Once configured, you can ask Claude Code:
Find all usage of SearchIcon componentShow me where Button from @mui/material is usedFind useState imports from react in .tsx files onlyList files that use the UserProfile componentimport { Component } from './path'import Component from './Component'import * as Components from 'package'import 'package' (side-effect imports)<Component />, <Component prop="value">Component(), Component.method(): Component, Component<T>{ Component } = objtargetName (required): Name of component/function/type to findpackageName (optional): NPM package name for external dependenciesprojectRoot (optional): Project root path (defaults to current directory)extensions (optional): File extensions to search (default: .ts, .tsx, .js, .jsx)excludeDirs (optional): Directories to exclude (default: node_modules, .git, dist, build)format (optional): Output format - 'detailed' or 'files-only'Works with any React/TypeScript project structure:
Contributions welcome! Please read our Contributing Guide first.
MIT © Deonis Peretyagin
Found a bug? Please open an issue.
See CHANGELOG.md for version history.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.