René's URL Explorer Experiment


Title: feat: support allagents mcp add --proxy without workspace.yaml mcpProxy config · Issue #366 · EntityProcess/allagents · GitHub

Open Graph Title: feat: support allagents mcp add --proxy without workspace.yaml mcpProxy config · Issue #366 · EntityProcess/allagents

X Title: feat: support allagents mcp add --proxy without workspace.yaml mcpProxy config · Issue #366 · EntityProcess/allagents

Description: Summary Add first-class proxy support to the allagents mcp add workflow so users can opt into mcp-remote directly from the CLI, without manually editing workspace.yaml to add mcpProxy:. Example target UX: allagents mcp add internal-api h...

Open Graph Description: Summary Add first-class proxy support to the allagents mcp add workflow so users can opt into mcp-remote directly from the CLI, without manually editing workspace.yaml to add mcpProxy:. Example tar...

X Description: Summary Add first-class proxy support to the allagents mcp add workflow so users can opt into mcp-remote directly from the CLI, without manually editing workspace.yaml to add mcpProxy:. Example tar...

Opengraph URL: https://github.com/EntityProcess/allagents/issues/366

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"feat: support allagents mcp add --proxy without workspace.yaml mcpProxy config","articleBody":"## Summary\n\nAdd first-class proxy support to the `allagents mcp add` workflow so users can opt into `mcp-remote` directly from the CLI, without manually editing `workspace.yaml` to add `mcpProxy:`.\n\nExample target UX:\n\n```bash\nallagents mcp add internal-api https://mcp.example.com --proxy\n```\n\nOptionally:\n\n```bash\nallagents mcp add internal-api https://mcp.example.com --proxy --client claude,codex,copilot\n```\n\n## Motivation\n\nUpstream `allagents` now has a dedicated `mcp` command surface, which is the right direction for MCP-only workflows. However, the current proxy path is still driven by `workspace.yaml`:\n\n```yaml\nmcpProxy:\n  clients:\n    - claude\n    - codex\n```\n\nThat works, but it is not ergonomic for users who just want to add one server through the CLI and have it use the built-in `mcp-remote` rewrite immediately.\n\nToday the user has to:\n\n1. add the MCP server\n2. edit `workspace.yaml`\n3. add `mcpProxy.clients` or per-server overrides\n4. sync again\n\nFor one-off installs, that is more ceremony than necessary.\n\n## Why this belongs on `mcp add`\n\nI think this should be a flag on `mcp add`, not a separate `mcp proxy` command group.\n\n```bash\nallagents mcp add \u003cname\u003e \u003ccommandOrUrl\u003e --proxy\n```\n\nReasons:\n- proxying is a transport/detail of the server definition, not a separate top-level object\n- it composes naturally with existing flags like `--client`, `--transport`, `--env`, and `--header`\n- it matches user intent: “add this MCP server, but proxy it”\n- it avoids splitting similar workflows across `mcp add` and a separate proxy namespace\n\n## Proposed Behavior\n\n### `mcp add --proxy`\n\nWhen `--proxy` is used with an HTTP server:\n\n- the server should be added normally via `mcp add`\n- the workspace config should record that this server should be proxied for the selected clients\n- the built-in proxy rewrite should be applied during post-mutation sync\n- the proxy metadata file should be created automatically if needed\n\n### Interaction with `--client`\n\nIf `--client` is present:\n\n```bash\nallagents mcp add internal-api https://mcp.example.com --proxy --client claude,codex\n```\n\nthen proxying should apply only to those clients.\n\nIf `--client` is omitted, proxying should apply to all MCP-capable configured clients targeted by the command.\n\n### Config persistence rule\n\nThis should persist proxy intent in a way that is scoped to the server being added.\n\nPreferred behavior:\n- `mcp add --proxy` should add a per-server proxy mapping for the new server\n- it should not broaden a workspace-wide proxy rule for unrelated MCP servers unless the user explicitly asked for that behavior elsewhere\n\nIn other words, this issue is about CLI ergonomics, not changing the config model.\n\n## Red / Green Definition\n\n### Red\n\nToday, the following flow is not available as a single CLI-driven workflow:\n\n```bash\nallagents mcp add internal-api https://mcp.example.com --proxy\n```\n\nCurrent state requires manual `workspace.yaml` editing to enable the proxy rewrite.\n\n### Green\n\nAfter this feature lands, the same command should:\n\n```bash\nallagents mcp add internal-api https://mcp.example.com --proxy\n```\n\nand all of the following should be true without manual config edits:\n- the server is added to workspace MCP config\n- proxy intent is persisted for that server\n- proxy metadata file exists if required\n- the synced client MCP config uses the proxied stdio form (`npx ... mcp-remote ...`) instead of the raw HTTP URL for targeted clients\n\n## Manual E2E Gate\n\nBefore this is considered complete, manual E2E verification should be run against a temporary workspace.\n\nSuggested steps:\n\n1. Create a temp workspace with at least one MCP-capable client configured.\n2. Run:\n   ```bash\n   allagents mcp add internal-api https://mcp.example.com --proxy\n   ```\n3. Verify `workspace.yaml` was updated with both:\n   - the MCP server definition\n   - server-scoped proxy intent\n4. Verify the proxy metadata file was created automatically if it did not already exist.\n5. Verify the generated client MCP config uses `npx` + `mcp-remote` stdio config rather than the raw HTTP URL for proxied clients.\n6. Re-run sync/update and verify the result is idempotent.\n7. Run the same scenario with `--client claude,codex` and verify only those clients receive the proxied rewrite.\n\n## Acceptance Criteria\n\n- [ ] `allagents mcp add \u003cname\u003e \u003curl\u003e --proxy` works for HTTP MCP servers\n- [ ] `--proxy` automatically enables the existing `mcp-remote` rewrite path\n- [ ] proxy metadata file is created automatically when needed\n- [ ] `--proxy --client claude,codex` scopes proxying to those clients\n- [ ] omitting `--client` applies proxying to all MCP-capable configured clients targeted by the command\n- [ ] no manual `workspace.yaml` edit is required for the common case\n- [ ] proxy persistence is scoped to the added server rather than widening unrelated proxy settings\n- [ ] manual E2E verification is performed before the work is considered done\n- [ ] help/docs explain that this uses the existing `mcp-remote`-based proxy implementation\n\n## Related Context\n\n- Existing MCP subcommand issue: #346\n- Existing proxy implementation already exists in `src/core/mcp-proxy.ts`\n- Current capability is strong, but the CLI path is still more manual than it needs to be\n\n## Example Use Case\n\nEnterprise/internal MCP servers often work best through a local proxy for clients that struggle with HTTP auth or OAuth callback flows. `allagents` already has the machinery for this via `mcp-remote`; this request is to expose that path directly in the command users already expect to use.\n","author":{"url":"https://github.com/christso","@type":"Person","name":"christso"},"datePublished":"2026-04-23T04:03:14.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/366/allagents/issues/366"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:0e35bc7d-0eb0-318e-e75e-720ab4aa3140
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id92AC:CBED7:A2F8BC:DBAD20:6A4D4FF2
html-safe-noncee537b1e17644598bd074809fe039aaf5e66f9e2db0362f1a2338b25157a65173
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5MkFDOkNCRUQ3OkEyRjhCQzpEQkFEMjA6NkE0RDRGRjIiLCJ2aXNpdG9yX2lkIjoiODQ3MTAzMjIyOTUzNDcxNTg5MCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac1177c561dac3706bfcea6407b35219aa310a3103c8eed6180fa5bfc4c6128157
hovercard-subject-tagissue:4313403194
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/EntityProcess/allagents/366/issue_layout
twitter:imagehttps://opengraph.githubassets.com/10361debfd5a4e32205d3c5eb8e822cd6590495f05cda6427fe1fdb98de47db0/EntityProcess/allagents/issues/366
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/10361debfd5a4e32205d3c5eb8e822cd6590495f05cda6427fe1fdb98de47db0/EntityProcess/allagents/issues/366
og:image:altSummary Add first-class proxy support to the allagents mcp add workflow so users can opt into mcp-remote directly from the CLI, without manually editing workspace.yaml to add mcpProxy:. Example tar...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamechristso
hostnamegithub.com
expected-hostnamegithub.com
None92571a8944142227b7e19cd10918b1ddd06e5066c1ad5bc7e4769cf6140a87e6
turbo-cache-controlno-preview
go-importgithub.com/EntityProcess/allagents git https://github.com/EntityProcess/allagents.git
octolytics-dimension-user_id8837957
octolytics-dimension-user_loginEntityProcess
octolytics-dimension-repository_id1139437609
octolytics-dimension-repository_nwoEntityProcess/allagents
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1139437609
octolytics-dimension-repository_network_root_nwoEntityProcess/allagents
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release56fc8347865a14e2ec811533d68f929cf4e0ec19
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/EntityProcess/allagents/issues/366#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FEntityProcess%2Fallagents%2Fissues%2F366
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FEntityProcess%2Fallagents%2Fissues%2F366
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=EntityProcess%2Fallagents
Reloadhttps://github.com/EntityProcess/allagents/issues/366
Reloadhttps://github.com/EntityProcess/allagents/issues/366
Reloadhttps://github.com/EntityProcess/allagents/issues/366
Please reload this pagehttps://github.com/EntityProcess/allagents/issues/366
EntityProcess https://github.com/EntityProcess
allagentshttps://github.com/EntityProcess/allagents
Notifications https://github.com/login?return_to=%2FEntityProcess%2Fallagents
Fork 2 https://github.com/login?return_to=%2FEntityProcess%2Fallagents
Star 9 https://github.com/login?return_to=%2FEntityProcess%2Fallagents
Code https://github.com/EntityProcess/allagents
Issues 10 https://github.com/EntityProcess/allagents/issues
Pull requests 2 https://github.com/EntityProcess/allagents/pulls
Actions https://github.com/EntityProcess/allagents/actions
Projects https://github.com/EntityProcess/allagents/projects
Security and quality 0 https://github.com/EntityProcess/allagents/security
Insights https://github.com/EntityProcess/allagents/pulse
Code https://github.com/EntityProcess/allagents
Issues https://github.com/EntityProcess/allagents/issues
Pull requests https://github.com/EntityProcess/allagents/pulls
Actions https://github.com/EntityProcess/allagents/actions
Projects https://github.com/EntityProcess/allagents/projects
Security and quality https://github.com/EntityProcess/allagents/security
Insights https://github.com/EntityProcess/allagents/pulse
feat: support allagents mcp add --proxy without workspace.yaml mcpProxy confighttps://github.com/EntityProcess/allagents/issues/366#top
https://github.com/christso
christsohttps://github.com/christso
on Apr 23, 2026https://github.com/EntityProcess/allagents/issues/366#issue-4313403194
feat: mcp subcommand for managing MCP servers independently #346https://github.com/EntityProcess/allagents/issues/346
AllAgents OSS Boardhttps://github.com/orgs/EntityProcess/projects/2
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.