-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7582a73
commit fc89ea4
Showing
12 changed files
with
125 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,7 @@ | ||
--- | ||
title: Tools For Devs | ||
title: MCP/run Toolbox | ||
weight: 1 | ||
cascade: | ||
type: docs | ||
--- | ||
|
||
## AI Tools for Dev | ||
|
||
|
||
|
||
## Model Context Protocol |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
title: Tools Project Documentation | ||
title: Documentation | ||
--- | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: example prompts | ||
--- | ||
|
||
* [Use curl to fetch your GitHub gists](curl) | ||
* [call swagger api](swagger) | ||
* [create an animaged gif using ffmpeg](ffmpeg) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
title: curl | ||
--- | ||
|
||
# Description | ||
|
||
Fetch gists from your user from GitHub | ||
|
||
# Prompt Code | ||
|
||
```markdown | ||
--- | ||
tools: | ||
- name: curl | ||
parameter-values: | ||
user: slimslenderslacks | ||
--- | ||
|
||
# prompt | ||
|
||
Run the curl command, in silent mode, to fetch gists for user {{user}} from GitHub. | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
title: use ffmpeg | ||
--- | ||
|
||
# Description | ||
|
||
Use ffmpeg to convert an mp4 file to an animated gif. | ||
|
||
Users must refer to the mp4 file using a relative path from the working directory they've given to the mcp | ||
bridge server. | ||
|
||
# Prompt Code | ||
|
||
```markdown | ||
--- | ||
tools: | ||
- name: ffmpeg | ||
description: run the ffmpeg command | ||
parameters: | ||
type: object | ||
properties: | ||
args: | ||
description: arguments to pass to ffmpeg | ||
type: array | ||
items: | ||
type: string | ||
container: | ||
image: linuxserver/ffmpeg:version-7.1-cli | ||
command: | ||
- "{{args|into}}" | ||
--- | ||
|
||
# prompt | ||
|
||
Use ffmpeg to convert the file UsingPuppeteer.mp4 into an animated gif file at 1 frame per second. | ||
The output file should be named UsingPuppeteer.gif. | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
title: call swagger api | ||
--- | ||
|
||
# Description | ||
|
||
Describe a two step process where we first grab a swagger.json file from the web and then use | ||
that to make an api call. | ||
|
||
# Prompt Code | ||
|
||
```markdown | ||
--- | ||
tools: | ||
- name: curl | ||
--- | ||
|
||
# prompt | ||
|
||
Use curl to fetch the openai spec at https://fakerestapi.azurewebsites.net/swagger/v1/swagger.json | ||
Then use curl to get all authors from the api. | ||
``` | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: Quick Start | ||
weight: 1 | ||
--- | ||
|
||
{{% steps %}} | ||
|
||
### Step 1 | ||
|
||
### second | ||
|
||
{{% /steps %}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
model: claude-3-5-sonnet-20241022 | ||
tools: | ||
- name: curl | ||
--- | ||
|
||
# prompt | ||
|
||
Use curl to fetch the openai spec at https://fakerestapi.azurewebsites.net/swagger/v1/swagger.json | ||
Then use curl to get all authors from the api. | ||
|