Add MCP server adapter for structured agent tool access - #23
Draft
Arun Sekhar (achandmsft) wants to merge 1 commit into
Draft
Add MCP server adapter for structured agent tool access#23Arun Sekhar (achandmsft) wants to merge 1 commit into
Arun Sekhar (achandmsft) wants to merge 1 commit into
Conversation
Comment on lines
+34
to
+41
| Clone this repo and open it alongside your app as a [multi-root workspace](https://code.visualstudio.com/docs/editor/multi-root-workspaces): | ||
|
|
||
| ```bash | ||
| git clone https://github.com/Azure-Samples/azure-openai-to-responses.git | ||
| # File → Add Folder to Workspace… → select azure-openai-to-responses | ||
| ``` | ||
|
|
||
| The `@azure-openai-to-responses` agent and skill activate automatically. |
There was a problem hiding this comment.
I believe this is clumsy. Switching from single root to multi-root workspaces impact the experience in vscode: a lot of the extensions start asking you "which workspace" either on start or when running a command.
We should probably look for alternatives. Also I'm not sure that works for GH CP CLI users
Add mcp_server.py exposing scan, smoke_test, check_models, and migration_plan as structured MCP tools (stdio transport). Agents call these natively instead of shelling out to CLI scripts. - Add mcp optional dependency to pyproject.toml - Add azure-openai-to-responses-mcp console script entry point - Add MCP server docs and repo structure update to README
Arun Sekhar (achandmsft)
force-pushed
the
feature/mcp-server-and-install-docs
branch
from
April 10, 2026 21:59
6d526b7 to
0665825
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.
What this does
Adds
mcp_server.pyexposing the scanner, smoke test, model compatibility checker, and migration plan as structured MCP tools (stdio transport). Agents call these natively instead of shelling out to CLI scripts.scansmoke_testcheck_modelsmigration_planAlso adds:
mcpoptional dependency in pyproject.tomlazure-openai-to-responses-mcpconsole script entry pointWhy
Scripts as entry point means agents shell out via
executeand parse stdout. MCP gives structured I/O and works in sandboxed environments whereexecuteis disabled.Related