Skip to content

Commit

Permalink
Add more packages
Browse files Browse the repository at this point in the history
  • Loading branch information
michaellatman committed Dec 1, 2024
1 parent d1c069c commit 61b2eed
Show file tree
Hide file tree
Showing 5 changed files with 82 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,7 @@ coverage/
*.tgz

# Yarn Integrity file
.yarn-integrity
.yarn-integrity

# Ignore loaders directory
loaders/
7 changes: 7 additions & 0 deletions mcp-get.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"folders": [
{
"path": ".."
}
]
}
40 changes: 40 additions & 0 deletions packages/package-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,5 +110,45 @@
"sourceUrl": "https://github.com/kimtaeyoon83/mcp-server-youtube-transcript",
"homepage": "https://github.com/kimtaeyoon83/mcp-server-youtube-transcript",
"license": "MIT"
},
{
"name": "@kagi/mcp-server-kagi",
"description": "MCP server for Kagi search API integration",
"vendor": "ac3xx (https://github.com/ac3xx)",
"sourceUrl": "https://github.com/ac3xx/mcp-servers-kagi",
"homepage": "https://github.com/ac3xx/mcp-servers-kagi",
"license": "MIT"
},
{
"name": "@exa/mcp-server",
"description": "MCP server for Exa AI Search API integration",
"vendor": "Exa Labs (https://exa.ai)",
"sourceUrl": "https://github.com/exa-labs/exa-mcp-server",
"homepage": "https://exa.ai",
"license": "MIT"
},
{
"name": "@search1api/mcp-server",
"description": "MCP server for Search1API integration",
"vendor": "fatwang2 (https://github.com/fatwang2)",
"sourceUrl": "https://github.com/fatwang2/search1api-mcp",
"homepage": "https://github.com/fatwang2/search1api-mcp",
"license": "MIT"
},
{
"name": "@calclavia/mcp-obsidian",
"description": "MCP server for reading and searching Markdown notes (like Obsidian vaults)",
"vendor": "Calclavia (https://github.com/calclavia)",
"sourceUrl": "https://github.com/calclavia/mcp-obsidian",
"homepage": "https://github.com/calclavia/mcp-obsidian",
"license": "MIT"
},
{
"name": "@anaisbetts/mcp-youtube",
"description": "MCP server for fetching YouTube subtitles",
"vendor": "Anaïs Betts (https://github.com/anaisbetts)",
"sourceUrl": "https://github.com/anaisbetts/mcp-youtube",
"homepage": "https://github.com/anaisbetts/mcp-youtube",
"license": "MIT"
}
]
24 changes: 24 additions & 0 deletions src/helpers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,29 @@ export const packageHelpers: PackageHelpers = {
required: true
}
}
},
'@kagi/mcp-server-kagi': {
requiredEnvVars: {
KAGI_API_KEY: {
description: 'API key for Kagi Search',
required: true
}
}
},
'@exa/mcp-server': {
requiredEnvVars: {
EXA_API_KEY: {
description: 'API key for Exa AI Search',
required: true
}
}
},
'@search1api/mcp-server': {
requiredEnvVars: {
SEARCH1API_KEY: {
description: 'API key for Search1API',
required: true
}
}
}
};
7 changes: 7 additions & 0 deletions src/mcp-get.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"folders": [
{
"path": ".."
}
]
}

0 comments on commit 61b2eed

Please sign in to comment.