Eyer MCP server - install
Eyer MCP server download: https://github.com/eyer-development/MCP
MCP is an open protocol that standardizes how applications provide context to LLMs. Think of MCP like a USB-C port for AI applications. Just as USB-C provides a standardized way to connect your devices to various peripherals and accessories, MCP provides a standardized way to connect AI models to different data sources and tools.
There are two versions of the Eyer MCP server available:
local / remote access with no authentication (HTTP)
local / remote access with authentication (HTTP bearer token)
The Eyer MCP server will provide access to 7 APIs covering anomaly investigation, correlations and insight into components monitored. You can find most of the Eyer APIs as a Postman collection.
Before starting, please ensure you have:
npm (included with Node)
Install all project dependencies the folder root directory (Eyer MCP server folder) with
npm install
Then you add your Eyer “apiTokenRead” to all files in the following folder:
eyer-mcp-server/tools/eyer-api-collection/eyer-query-ap-isYou will see a section on the top of each file with
const token = "apiTokenRead";Replace the “apiTokenRead” with your token
The MCP server is now ready to be used locally without HTTP access (for instance with Claude for Desktop). If you want to set up the MCP server with remote access, please continue with the following steps
To run the non-authentication MCP server with remote access
Go to your MCP folder, and run the command
node mcpServer.js --sseThe MCP server now runs with HTTP access on http://<host>:3001/messages
To run the MCP server with HTTP bearer authentication and remote access
Set the
AUTH_TOKENenvironment variable with your desired secret token (e.g.,export AUTH_TOKEN='my_super_secret_token').Restart the MCP server
Include the
Authorization: Bearer <your_token>header in your client requests.The MCP server now runs with remote access over HTTP on http://<host>:3001/messages
Your MCP server is now ready. If you want to interact with the MCP Server with a LLM, we recommend Claude for Desktop as this is very easy to install and get going. See the following article on how to integrate Claude for Desktop with a MCP Server.