From 06d788ae37fd8f441642415a03e21f371eba5e94 Mon Sep 17 00:00:00 2001 From: James Elkins Date: Tue, 11 Mar 2025 17:15:40 +0700 Subject: [PATCH 1/2] add artemis mcp --- src/data/servers/index.ts | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/src/data/servers/index.ts b/src/data/servers/index.ts index 575f830..793c71e 100644 --- a/src/data/servers/index.ts +++ b/src/data/servers/index.ts @@ -1,6 +1,34 @@ import type { MCPServerType } from '../types.js' export const servers: MCPServerType[] = [ + { + id: 'artemis', + name: 'Artemis Analytics', + description: 'Pull the latest fundamental crypto data from Artemis natively into you favorite chatbot interface.', + publisher: { + id: 'Artemis-xyz', + name: 'Artemis Analytics Inc.', + url: 'https://www.artemis.xyz/', + }, + isOfficial: true, + sourceUrl: 'https://github.com/Artemis-xyz/artemis-mcp', + distribution: { + type: 'pip', + package: 'artemis-mcp', + }, + license: 'MIT', + runtime: 'python', + config: + { + command: 'uvx', + args: ['artemis-mcp'], + env: { + ARTEMIS_API_KEY: { + description: 'Your Artemis API key from https://app.artemis.xyz/settings.', + } + } + } + }, { id: "aws-kb-retrieval-server-ref", name: "AWS Knowledge Base", From f4a17b1053fdd4f9f6c4b237d51b370d29ed8924 Mon Sep 17 00:00:00 2001 From: James Elkins Date: Wed, 12 Mar 2025 14:19:55 +0700 Subject: [PATCH 2/2] bump version --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index f404568..3b372c8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "opentools", - "version": "0.0.12", + "version": "0.0.13", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "opentools", - "version": "0.0.12", + "version": "0.0.13", "license": "MIT", "dependencies": { "@inquirer/prompts": "^7.2.1", diff --git a/package.json b/package.json index a5daa91..c53bab1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "opentools", "description": "The easiest way to install MCP servers", - "version": "0.0.12", + "version": "0.0.13", "author": "OpenTools Team", "bin": { "opentools": "./bin/run.js"