Eyer MCP server - Claude
Download the Claude for Desktop https://claude.ai/download
Make sure you have downloaded the Eyer MCP server and install dependencies before you continue. See article Eyer MCP server - install
You can easily use the Eyer MCP server with Claude for Desktop. Below are instructions on how you make the MCP server available for Claude.
On Claude for Desktop, go to “Settings → Developer → Edit config”. A folder will open where you will see the file “claude_desktop_config.json”. Open the file in a text editor.
Use the template below and modify the following:
Modify the “args” section with the complete path to your Eyer MCP folder that contains the “mcpServer.js” file.
In the “filesystem” section you can modify the existing file path to a folder of choice where you keep documents relevant for Claude and interactions with Eyer (knowledgebase documents etc) and you can also add additional lines with paths to other folders
Save the config.
Restart the Claude for Desktop. You can verify that it has access to the MCP server by clicking the “search and tools” icon in the chat window (see screenshot below)
{
"mcpServers": {
"Eyer": {
"command": "node",
"args": ["/Users/username/Downloads/eyer-mcp-server/mcpServer.js"]
},
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/Users/username/Downloads/Claude"
]
}
}
}