feat(mcp-server-bindings): add mcpServer resource type to bindings#1395
Open
feat(mcp-server-bindings): add mcpServer resource type to bindings#1395
Conversation
There was a problem hiding this comment.
Pull request overview
This PR extends the bindings.json resource-binding format to support a new resource type, mcpServer, so projects can define and resolve MCP server endpoints in a consistent way alongside existing resource bindings.
Changes:
- Added
mcpServerto the bindings JSON Schema as an allowedresourceenum value. - Documented
mcpServerin the bindings specification, including example configuration and metadata. - Updated the resource-overrides samples (bindings JSON + Python) to demonstrate retrieving an MCP server via
retrieve_async.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| specs/bindings.spec.md | Adds mcpServer to the documented resource types and provides examples/metadata. |
| specs/bindings.schema.json | Extends the schema’s resource enum to include mcpServer. |
| samples/resource-overrides/main.py | Demonstrates retrieving an MCP server via uipath.mcp.retrieve_async. |
| samples/resource-overrides/bindings.json | Adds a sample mcpServer entry to bindings.json. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
radu-mocanu
reviewed
Mar 2, 2026
c9b245c to
4f24c2e
Compare
radu-mocanu
approved these changes
Mar 2, 2026
4f24c2e to
98547b8
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request introduces support for a new resource type,
mcpServer, across the resource binding configuration and documentation. The changes add the ability to define, retrieve, and document MCP server resources, enabling coded agents to connect to MCP endpoints using a standardized format.Resource Type Expansion
mcpServeras a recognized resource type in the resource bindings schema (specs/bindings.schema.json) and documented its purpose and key format in the specification (specs/bindings.spec.md). [1] [2] [3]Sample and Example Updates
mcpServerin both the bindings JSON (samples/resource-overrides/bindings.json) and the documentation, illustrating the expected structure and usage. [1] [2]retrieve_asyncmethod and appending the result to the response (samples/resource-overrides/main.py).