0.2.0 • Published 4 months ago

explorium-mcp-server v0.2.0

Weekly downloads
-
License
ISC
Repository
-
Last release
4 months ago

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.

0.2.0

4 months ago

0.1.9

4 months ago

0.1.8

4 months ago

0.1.7

4 months ago

0.1.6

4 months ago

0.1.5

4 months ago

0.1.4

4 months ago

0.1.3

4 months ago

0.1.2

4 months ago

0.1.1

4 months ago

0.1.0

4 months ago