-
Notifications
You must be signed in to change notification settings - Fork 52.6k
feat(mcp-catalog): add GitHub, Notion, and Sentry remote-OAuth connectors #66653
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
joelbrilliant
wants to merge
2
commits into
NousResearch:main
Choose a base branch
from
joelbrilliant:feat/mcp-catalog-github-notion
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+119
−0
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,40 @@ | ||
| # Nous-approved MCP catalog entry. | ||
| # Presence in this directory = approval. Merged via PR review. | ||
| manifest_version: 1 | ||
|
|
||
| name: github | ||
| description: Search, read, and manage GitHub repos, issues, and pull requests. | ||
| source: https://github.com/github/github-mcp-server | ||
|
|
||
| # GitHub ships an official remote MCP server with native OAuth 2.1 over | ||
| # Streamable HTTP. Hermes's MCP client + mcp_oauth_manager handle discovery, | ||
| # PKCE, token exchange, and refresh — nothing to install locally. The trailing | ||
| # slash on the URL is GitHub's documented endpoint form (github-mcp-server | ||
| # README, "Remote MCP server"). | ||
| transport: | ||
| type: http | ||
| url: https://api.githubcopilot.com/mcp/ | ||
|
|
||
| auth: | ||
| type: oauth | ||
| # No `provider:` — this is native MCP OAuth (case 1), not a third-party | ||
| # provider. The MCP client triggers the browser flow on the first probe / | ||
| # first connect. (GitHub's remote server also accepts a PAT, but the catalog | ||
| # entry uses the native OAuth path so there is no token to mint or store.) | ||
|
|
||
| # Tool selection at install time: | ||
| # GitHub's remote MCP server exposes a broad tool surface across repos, issues, | ||
| # pull requests, actions, code search, and more. We leave `default_enabled` | ||
| # unset so the install-time checklist starts with everything pre-checked — | ||
| # users prune what they don't want. | ||
| # | ||
| # If you want to encode a curated subset here once it stabilizes, list the | ||
| # tool names under `tools.default_enabled`. Probe failure would then apply | ||
| # that list directly. | ||
|
|
||
| post_install: | | ||
| On first connection, Hermes will open a browser to authenticate with GitHub. | ||
| After auth, restart your Hermes session so the GitHub tools are loaded. | ||
|
|
||
| You can re-run the tool checklist any time with: | ||
| hermes mcp configure github | ||
This file contains hidden or 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,37 @@ | ||
| # Nous-approved MCP catalog entry. | ||
| # Presence in this directory = approval. Merged via PR review. | ||
| manifest_version: 1 | ||
|
|
||
| name: notion | ||
| description: Search, read, and update Notion pages, databases, and comments. | ||
| source: https://developers.notion.com/docs/mcp | ||
|
|
||
| # Notion hosts a remote MCP server with native OAuth 2.1 over Streamable HTTP. | ||
| # Hermes's MCP client + mcp_oauth_manager handle discovery, PKCE, token | ||
| # exchange, and refresh — nothing to install locally. | ||
| transport: | ||
| type: http | ||
| url: https://mcp.notion.com/mcp | ||
|
|
||
| auth: | ||
| type: oauth | ||
| # No `provider:` — this is native MCP OAuth (case 1), not a third-party | ||
| # provider like Google. The MCP client triggers the browser flow on the | ||
| # first probe / first connect. | ||
|
|
||
| # Tool selection at install time: | ||
| # Notion's hosted MCP server exposes a moderate-sized tool surface (search + | ||
| # fetch/create/update across pages, databases, and comments). We leave | ||
| # `default_enabled` unset so the install-time checklist starts with everything | ||
| # pre-checked — users prune what they don't want. | ||
| # | ||
| # If you want to encode a curated subset here once it stabilizes, list the | ||
| # tool names under `tools.default_enabled`. Probe failure would then apply | ||
| # that list directly. | ||
|
|
||
| post_install: | | ||
| On first connection, Hermes will open a browser to authenticate with Notion. | ||
| After auth, restart your Hermes session so the Notion tools are loaded. | ||
|
|
||
| You can re-run the tool checklist any time with: | ||
| hermes mcp configure notion |
This file contains hidden or 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,39 @@ | ||
| # Nous-approved MCP catalog entry. | ||
| # Presence in this directory = approval. Merged via PR review. | ||
| manifest_version: 1 | ||
|
|
||
| name: sentry | ||
| description: Search and triage Sentry issues, projects, and error events. | ||
| source: https://docs.sentry.io/product/sentry-mcp/ | ||
|
|
||
| # Sentry hosts a remote MCP server with native OAuth 2.1 over Streamable HTTP | ||
| # (graceful SSE fallback for older clients). Hermes's MCP client + | ||
| # mcp_oauth_manager handle discovery, PKCE, token exchange, and refresh — | ||
| # nothing to install locally. | ||
| transport: | ||
| type: http | ||
| url: https://mcp.sentry.dev/mcp | ||
|
|
||
| auth: | ||
| type: oauth | ||
| # No `provider:` — this is native MCP OAuth (case 1), not a third-party | ||
| # provider like Google. The MCP client triggers the browser flow on the | ||
| # first probe / first connect. Sentry validates the token audience locally | ||
| # and makes its own server-to-server calls to the Sentry API. | ||
|
|
||
| # Tool selection at install time: | ||
| # Sentry's hosted MCP server exposes a moderate-sized tool surface (project + | ||
| # issue lookup, event/error inspection, DSN management, Seer root-cause). We | ||
| # leave `default_enabled` unset so the install-time checklist starts with | ||
| # everything pre-checked — users prune what they don't want. | ||
| # | ||
| # If you want to encode a curated subset here once it stabilizes, list the | ||
| # tool names under `tools.default_enabled`. Probe failure would then apply | ||
| # that list directly. | ||
|
|
||
| post_install: | | ||
| On first connection, Hermes will open a browser to authenticate with Sentry. | ||
| After auth, restart your Hermes session so the Sentry tools are loaded. | ||
|
|
||
| You can re-run the tool checklist any time with: | ||
| hermes mcp configure sentry |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.