JSX Prop Lookup MCP Server
Analyzes JSX prop usage in React/TypeScript codebases using AST parsing, enabling prop usage tracking, component analysis, and TypeScript support.
README
JSX Prop Lookup MCP Server
An MCP (Model Context Protocol) server that analyzes JSX prop usage in React/TypeScript codebases using AST parsing.
Features
- AST-based Analysis: Uses Babel parser for accurate JSX/TSX parsing
- Prop Usage Tracking: Find where props are used across components
- Component Analysis: Analyze prop definitions and usage patterns (supports destructuring and identifier-based props access in function/arrow components)
- TypeScript Support: Includes TypeScript interface analysis
- Identifier Param Support: Detects props accessed via identifier parameters (not just destructured), e.g.,
p.onClickandbuttonProps.disabledinside function/arrow component bodies - Multiple Search Options: Search by component, prop name, or analyze entire directories
Installation
Option 1: Use with npx (Recommended)
No installation required! Use directly with npx:
npx jsx-prop-lookup-mcp-server
Option 2: Install Globally
npm install -g jsx-prop-lookup-mcp-server
jsx-prop-lookup-mcp-server
Option 3: Development Setup
git clone https://github.com/your-username/jsx-prop-lookup-mcp-server.git
cd jsx-prop-lookup-mcp-server
npm install
npm run build
npm start
Usage
The server provides four main tools:
1. analyze_jsx_props
Analyze JSX prop usage in files or directories.
Parameters:
path(required): File or directory path to analyzecomponentName(optional): Specific component name to analyzepropName(optional): Specific prop name to search forincludeTypes(optional): Include TypeScript type information (default: true)
2. find_prop_usage
Find all usages of a specific prop across JSX files. The directory must be an absolute path.
Parameters:
propName(required): Name of the prop to search fordirectory(optional): Directory to search in (default: "."). Must be an absolute path.componentName(optional): Limit search to specific component
3. get_component_props
Get all props used by a specific component. The directory must be an absolute path.
Parameters:
componentName(required): Name of the component to analyzedirectory(optional): Directory to search in (default: "."). Must be an absolute path.
4. find_components_without_prop
Find component instances that are missing a required prop (e.g., Select components without width prop). The directory must be an absolute path.
Parameters:
componentName(required): Name of the component to check (e.g., "Select")requiredProp(required): Name of the required prop (e.g., "width")directory(optional): Directory to search in (default: "."). Must be an absolute path.
Example Output
{
"summary": {
"totalFiles": 5,
"totalComponents": 3,
"totalProps": 12
},
"components": [
{
"componentName": "Button",
"file": "./src/Button.tsx",
"props": [
{
"propName": "onClick",
"componentName": "Button",
"file": "./src/Button.tsx",
"line": 5,
"column": 10
}
],
"propsInterface": "ButtonProps"
}
],
"propUsages": [
{
"propName": "className",
"componentName": "Button",
"file": "./src/App.tsx",
"line": 15,
"column": 20,
"value": "btn-primary"
}
]
}
Component name matching
- Namespaced JSX components (e.g.,
UI.Select) are supported. You can target either the full dotted name (e.g.,UI.Select) or the local component name (e.g.,Select) in tool inputs. Results record the full dotted name where applicable.
Supported File Types
.js- JavaScript.jsx- JavaScript with JSX.ts- TypeScript.tsx- TypeScript with JSX
MCP Client Configuration
Using with npx (Recommended)
Add to your MCP client configuration:
{
"mcpServers": {
"jsx-prop-lookup": {
"command": "npx",
"args": ["jsx-prop-lookup-mcp-server"]
}
}
}
Using with global installation
{
"mcpServers": {
"jsx-prop-lookup": {
"command": "jsx-prop-lookup-mcp-server"
}
}
}
Using with local development
{
"mcpServers": {
"jsx-prop-lookup": {
"command": "node",
"args": ["dist/index.js"],
"cwd": "/path/to/jsx-prop-lookup-mcp-server"
}
}
}
Development
npm run dev # Run in development mode
npm run build # Build for production
npm start # Run built version
Security and safe operation
Important: this MCP server reads files and directories on disk based on client-provided paths. Do NOT expose the stdio-based server to untrusted or network-exposed clients. By default there is no filesystem whitelist; to restrict filesystem access, set the ALLOWED_ROOTS environment variable to a comma-separated list of allowed root directories (absolute or workspace-relative). When configured, any tool request that refers to a path outside the allowed roots will be rejected.
Example (restrict to the repository root):
export ALLOWED_ROOTS="."
npm run dev
Recommended practices:
- Run this server only in trusted environments, or behind an authenticated proxy.
- Use
ALLOWED_ROOTSto limit the scope of accessible files. - Do not run the server as a privileged user; run under a least-privileged account.
- Consider further sandboxing (containerization) when servicing untrusted inputs.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。