🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@eox/elements-mcp-server

Package Overview
Dependencies
Maintainers
5
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@eox/elements-mcp-server

A server to provide information about EOxElements custom elements for coding agents.

latest
Source
npmnpm
Version
1.2.1
Version published
Maintainers
5
Created
Source

EOxElements MCP Server

This server provides a set of tools for a coding agent to get information about the EOxElements custom elements. It uses the @modelcontextprotocol/sdk to expose the tools.

Getting Started

Hosted Endpoint

To use the MCP server without installing anything locally, you can point your coding agent to our hosted endpoint:

https://elements.mcp.eox.at

For Users

Alternatively, you can run the server locally.

Install the package globally from npm:

npm install -g @eox/elements-mcp-server

Then, run the server:

eox-elements-mcp-server

The server will fetch the latest custom-elements.json from the EOxElements GitHub repository and start on http://localhost:3000.

For Developers

If you are working on the EOxElements project itself, you will want to run the server with a local custom-elements.json file.

  • Installation: From the root of the EOxElements project, install all dependencies:
npm install
  • Generate the manifest: Make sure the custom-elements.json file is up-to-date:
npm run generate-manifest
  • Run the server: Run the server with the --manifest flag, pointing to the generated custom-elements.json file:
node mcp-server/index.js --manifest ./custom-elements.json

You can also provide a local path to the story snippets file using the --snippets flag:

node mcp-server/index.js --manifest ./custom-elements.json --snippets ./story-snippets.json

The server will start on http://localhost:3000 and can be consumed by pointing a coding agent to it (or http://localhost:3000/ with a slash at the end if a path is required).

FAQs

Package last updated on 21 May 2026

Did you know?

Socket

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.

Install

Related posts