explorium-mcp-server v0.2.0
Explorium API MCP Server (JavaScript)
This MCP server is used to interact with the Explorium API, implemented in JavaScript.
Setup
Quick Start with npx
To run the server directly:
npx explorium-mcp-server
Make sure to set your EXPLORIUM_API_KEY
environment variable:
export EXPLORIUM_API_KEY=your_api_key_here
Local Installation
Clone the repository:
git clone https://github.com/explorium-ai/mcp-explorium-js.git
cd mcp-explorium-js
Install dependencies:
npm install
Copy the example environment file and add your API key:
cp .env.example .env
Edit the .env
file to add your EXPLORIUM_API_KEY
.
Running Locally
Start the MCP server:
npm start
This will start the MCP server on port 3000 (or the port specified in your .env
file).
Usage with Claude Desktop
Follow the official guide to install Claude Desktop and set it up to use MCP servers: https://modelcontextprotocol.io/quickstart/user Then, add this entry to your claude_desktop_config.json file:
{
"mcpServers": {
"Explorium": {
"command": "npx",
"args": ["-y", "@explorium/mcp-server"],
"env": {
"EXPLORIUM_API_KEY": "<YOUR_API_KEY>"
}
}
}
}
Be sure to replace <YOUR_API_KEY>
with your actual API key.
Usage with Cursor
Cursor has built-in support for MCP servers.
To configure it to use the Explorium MCP server, go to Cursor > Settings > Cursor Settings > MCP
and add an "Explorium" entry with this command:
npx -y @explorium/mcp-server
You may turn on "Yolo mode" in Cursor settings to use tools without confirming under Cursor > Settings > Cursor Settings > Features > Chat > Enable Yolo mode.