Skip to content

Commit

Permalink
Push
Browse files Browse the repository at this point in the history
  • Loading branch information
michaellatman committed Nov 27, 2024
1 parent 66da5a5 commit 041b83e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 94 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/update-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,12 @@ jobs:
if: steps.git-check.outputs.changes == 'true'
run: |
if [ -f "temp/commit-msg.txt" ]; then
MSG=$(cat temp/commit-msg.txt | tr '\n' ' ' | sed 's/"/\\"/g')
echo "message=${MSG}" >> "$GITHUB_OUTPUT"
MSG=$(cat temp/commit-msg.txt | sed 's/$/\\n/' | tr -d '\n')
echo "message<<EOF" >> $GITHUB_OUTPUT
echo "$MSG" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
else
echo "message=chore(packages): update MCP package list" >> "$GITHUB_OUTPUT"
echo "message=chore(packages): update MCP package list" >> $GITHUB_OUTPUT
fi
- name: Remove temp files
Expand All @@ -55,7 +57,8 @@ jobs:
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: ${{ steps.commit-msg.outputs.message }}
commit-message: |
${{ steps.commit-msg.outputs.message }}
title: 'Update MCP Package List'
body: |
${{ steps.commit-msg.outputs.message }}
Expand Down
91 changes: 1 addition & 90 deletions packages/package-list.json
Original file line number Diff line number Diff line change
@@ -1,90 +1 @@
[
{
"name": "@modelcontextprotocol/server-brave-search",
"description": "MCP server for Brave Search API integration",
"vendor": "Anthropic, PBC (https://anthropic.com)",
"sourceUrl": "https://github.com/modelcontextprotocol/servers/blob/main/src/brave-search",
"homepage": "https://modelcontextprotocol.io",
"license": "MIT"
},
{
"name": "@modelcontextprotocol/server-everything",
"description": "MCP server that exercises all the features of the MCP protocol",
"vendor": "Anthropic, PBC (https://anthropic.com)",
"sourceUrl": "https://github.com/modelcontextprotocol/servers/blob/main/src/everything",
"homepage": "https://modelcontextprotocol.io",
"license": "MIT"
},
{
"name": "@modelcontextprotocol/server-filesystem",
"description": "MCP server for filesystem access",
"vendor": "Anthropic, PBC (https://anthropic.com)",
"sourceUrl": "https://github.com/modelcontextprotocol/servers/blob/main/src/filesystem",
"homepage": "https://modelcontextprotocol.io",
"license": "MIT"
},
{
"name": "@modelcontextprotocol/server-gdrive",
"description": "MCP server for interacting with Google Drive",
"vendor": "Anthropic, PBC (https://anthropic.com)",
"sourceUrl": "https://github.com/modelcontextprotocol/servers/blob/main/src/gdrive",
"homepage": "https://modelcontextprotocol.io",
"license": "MIT"
},
{
"name": "@modelcontextprotocol/server-github",
"description": "MCP server for using the GitHub API",
"vendor": "Anthropic, PBC (https://anthropic.com)",
"sourceUrl": "https://github.com/modelcontextprotocol/servers/blob/main/src/github",
"homepage": "https://modelcontextprotocol.io",
"license": "MIT"
},
{
"name": "@modelcontextprotocol/server-gitlab",
"description": "MCP server for using the GitLab API",
"vendor": "GitLab, PBC (https://gitlab.com)",
"sourceUrl": "https://github.com/modelcontextprotocol/servers/blob/main/src/gitlab",
"homepage": "https://modelcontextprotocol.io",
"license": "MIT"
},
{
"name": "@modelcontextprotocol/server-google-maps",
"description": "MCP server for using the Google Maps API",
"vendor": "Anthropic, PBC (https://anthropic.com)",
"sourceUrl": "https://github.com/modelcontextprotocol/servers/blob/main/src/google-maps",
"homepage": "https://modelcontextprotocol.io",
"license": "MIT"
},
{
"name": "@modelcontextprotocol/server-memory",
"description": "MCP server for enabling memory for Claude through a knowledge graph",
"vendor": "Anthropic, PBC (https://anthropic.com)",
"sourceUrl": "https://github.com/modelcontextprotocol/servers/blob/main/src/memory",
"homepage": "https://modelcontextprotocol.io",
"license": "MIT"
},
{
"name": "@modelcontextprotocol/server-postgres",
"description": "MCP server for interacting with PostgreSQL databases",
"vendor": "Anthropic, PBC (https://anthropic.com)",
"sourceUrl": "https://github.com/modelcontextprotocol/servers/blob/main/src/postgres",
"homepage": "https://modelcontextprotocol.io",
"license": "MIT"
},
{
"name": "@modelcontextprotocol/server-puppeteer",
"description": "MCP server for browser automation using Puppeteer",
"vendor": "Anthropic, PBC (https://anthropic.com)",
"sourceUrl": "https://github.com/modelcontextprotocol/servers/blob/main/src/puppeteer",
"homepage": "https://modelcontextprotocol.io",
"license": "MIT"
},
{
"name": "@modelcontextprotocol/server-slack",
"description": "MCP server for interacting with Slack",
"vendor": "Anthropic, PBC (https://anthropic.com)",
"sourceUrl": "https://github.com/modelcontextprotocol/servers/blob/main/src/slack",
"homepage": "https://modelcontextprotocol.io",
"license": "MIT"
}
]
[]

0 comments on commit 041b83e

Please sign in to comment.