Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
28 changes: 28 additions & 0 deletions src/data/servers/index.ts
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading