
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
element-ui-mcp
Advanced tools
MCP server providing comprehensive Element-UI Vue 2.15.14 component documentation and information
A Model Context Protocol (MCP) server that provides comprehensive information about Element-UI v2.15.14 components. This server enables AI assistants to query Element-UI component documentation, properties, events, and usage examples.
Vue.js is an extremely powerful frontend framework, and Element-UI is one of the most popular and mature UI component libraries from the Vue 2 era. Although the Vue ecosystem has now entered the Vue 3 era, with Element-UI's last commit being on August 24, 2023, there are still many projects based on Vue 2 + Element-UI that continue to be maintained and iterated.
To enable large language models to more accurately understand Element-UI's components, properties, events, and examples when reading, generating, and completing code, and to further improve our development efficiency in maintaining legacy projects, I drew inspiration from the practices of other excellent component libraries and built this Element-UI dedicated MCP Server.
I hope it will be useful in your daily development and save more time for fellow developers who continue to maintain Vue 2 projects.
# Clone the repository
git clone https://github.com/yun8711/element-ui-mcp.git
cd element-ui-mcp
# Install dependencies
pnpm install
# Build the project
pnpm run build
The server provides 6 MCP API:
list_componentsLists all available Element-UI components.
search_componentsSearch for components by keyword.
Parameters:
keyword: Search termlimit (optional): Maximum number of resultsget_componentGet detailed information about a specific component.
Parameters:
tagName: Component tag name (e.g., "el-button")get_component_propsGet all properties for a specific component.
Parameters:
tagName: Component tag namepropName (optional): Specific property nameget_component_eventsGet all events for a specific component.
Parameters:
tagName: Component tag nameeventName (optional): Specific event nameget_component_examplesGet usage examples for a specific component.
Parameters:
tagName: Component tag nameexampleIndex (optional): Index of specific exampleTo use this server with MCP-compatible clients, you can configure it in two ways:
If you have cloned and built the project locally:
{
"mcpServers": {
"element-ui": {
"command": "node",
"args": ["/path/to/element-ui-mcp/stdio.js"]
}
}
}
Install the package globally and use npx:
npm install -g element-ui-mcp
Then configure in your MCP client:
{
"mcpServers": {
"element-ui": {
"command": "npx",
"args": ["-y", "element-ui-mcp"]
}
}
}
The npx approach is recommended as it automatically manages the package and ensures you're using the latest version.
The component data is extracted from Element-UI v2.15.14 documentation and type definitions, including:
MIT
FAQs
MCP server providing comprehensive Element-UI Vue 2.15.14 component documentation and information
The npm package element-ui-mcp receives a total of 2 weekly downloads. As such, element-ui-mcp popularity was classified as not popular.
We found that element-ui-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.