Skip to content

Commit 6f8f590

Browse files
Add new tiles
1 parent 70b60c2 commit 6f8f590

File tree

7 files changed

+96
-1
lines changed

7 files changed

+96
-1
lines changed

prompts/catalog.yaml

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,4 +590,32 @@ registry:
590590
secrets:
591591
- name: redis.host
592592
- name: redis.port
593-
593+
github:
594+
description: MCP Server for the GitHub API, enabling file operations, repository management, search functionality, and more.
595+
ref: github:docker/labs-ai-tools-for-devs?path=prompts/mcp/github.md
596+
icon: https://cdn.jsdelivr.net/npm/simple-icons@v7/icons/github.svg
597+
secrets:
598+
- name: github.personal_access_token
599+
google-maps:
600+
description: MCP Server for the Google Maps API.
601+
ref: github:docker/labs-ai-tools-for-devs?path=prompts/mcp/google-maps.md
602+
icon: https://cdn.jsdelivr.net/npm/simple-icons@v7/icons/github.svg
603+
secrets:
604+
- name: google.api_key
605+
time:
606+
description: MCP Server for the Google Maps API.
607+
ref: github:docker/labs-ai-tools-for-devs?path=prompts/mcp/time.md
608+
icon: https://img.icons8.com/ios/50/time_2.png
609+
secrets:
610+
- name: google.api_key
611+
fetch:
612+
description: web content fetching capabilities
613+
ref: github:docker/labs-ai-tools-for-devs?path=prompts/mcp/fetch.md
614+
icon: https://img.icons8.com/ios/50/time_2.png
615+
secrets:
616+
- name: google.api_key
617+
git:
618+
description: web content fetching capabilities
619+
ref: github:docker/labs-ai-tools-for-devs?path=prompts/examples/git.md
620+
icon: https://cdn.jsdelivr.net/npm/simple-icons@v7/icons/git.svg
621+

prompts/mcp/fetch.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
mcp:
3+
- container:
4+
image: mcp/fetch:latest
5+
workdir: /app
6+
---
7+

prompts/mcp/gdrive.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
tools:
3+
- name: gdrive_auth
4+
description: Authorize this server use your Google Drive.
5+
container:
6+
image: mcp/gdrive:latest
7+
background: true
8+
volumes:
9+
- "mcp-gdrive:/gdrive-server"
10+
ports:
11+
- "3000:3000"
12+
environment:
13+
GDRIVE_CREDENTIALS_PATH: /gdrive-server/credentials.json
14+
GDRIVE_OAUTH_PATH: /secret/gdrive.gcp-oauth.keys.json
15+
secrets:
16+
gdrive.gcp-oauth.keys.json: GDRIVE
17+
mcp:
18+
- container:
19+
image: mcp/gdrive:latest
20+
workdir: /app
21+
volumes:
22+
- "mcp-gdrive:/gdrive-server"
23+
environment:
24+
GDRIVE_CREDENTIALS_PATH: /gdrive-server/credentials.json
25+
---
26+

prompts/mcp/git.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
mcp:
3+
- container:
4+
image: mcp/brave-search:latest
5+
workdir: /app
6+
secrets:
7+
brave.api_key: BRAVE_API_KEY
8+
---
9+

prompts/mcp/github.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
mcp:
3+
- container:
4+
image: mcp/github:latest
5+
workdir: /app
6+
secrets:
7+
github.personal_access_token: GITHUB_PERSONAL_ACCESS_TOKEN
8+
---
9+

prompts/mcp/google-maps.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
mcp:
3+
- container:
4+
image: mcp/google-maps:latest
5+
workdir: /app
6+
secrets:
7+
google.api_key: GOOGLE_MAPS_API_KEY
8+
---
9+

prompts/mcp/time.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
mcp:
3+
- container:
4+
image: mcp/time:latest
5+
workdir: /app
6+
---
7+

0 commit comments

Comments
 (0)