Skip to content

fix(server): keep upstream resource annotations and _meta when proxying - #2469

Open
ayaangazali wants to merge 1 commit into
mcp-use:canaryfrom
ayaangazali:fix/proxy-resource-metadata
Open

fix(server): keep upstream resource annotations and _meta when proxying#2469
ayaangazali wants to merge 1 commit into
mcp-use:canaryfrom
ayaangazali:fix/proxy-resource-metadata

Conversation

@ayaangazali

@ayaangazali ayaangazali commented Sep 6, 2026

Copy link
Copy Markdown
Contributor

Why

ResourceDefinition carries annotations and _meta (resources.ts:28 and :36), and both survive local registration. The proxy mount copies only three fields (mcp-proxy.ts:405):

host.registerResource(
  {
    name,
    uri: proxiedResourceUri(plan.namespace, upstreamUri),
    ...(resource.title !== undefined && { title: resource.title }),
    ...(resource.description !== undefined && { description: resource.description }),
    ...(resource.mimeType !== undefined && { mimeType: resource.mimeType }),
  },
  ...

ProxyResource does not even declare the other two, so they are dropped at the introspection boundary. The moment a server is composed with use(), its upstream resources lose their client hints and their extension metadata from resources/list, with nothing reported.

Driving mountProxyConnection with an upstream resource that has both, the mounted definition comes back as { name: 'docs_guide', uri } and nothing else.

Why this one is a straight passthrough

Both fields are documented on the resource descriptor and neither has a framework-derived counterpart. That is not true of a tool's _meta, where the server computes _meta.ui.* from view and visibility and those derived values take precedence over colliding entries. There is no such derivation for resources, so there is nothing to collide with and no precedence question to answer.

Prompts need no equivalent change: PromptDefinition has no _meta.

The tool case, deliberately not in this PR

Proxied tools drop _meta the same way, and ProxyTool does not declare it either. I left that out because it is a policy question rather than a bug fix: forwarding upstream _meta verbatim would let an upstream set framework-owned _meta.ui.* keys, including visibility, on a tool this server re-exposes. That wants your call on whether to pass it through, or to forward everything except the framework-owned namespace. Happy to send that separately once you say which.

Test

Added to tests/proxy.test.ts, which already exercises mountProxyConnection with a fake host. On the unfixed source it fails with expected { name: 'docs_guide', …(1) } to match object { annotations: { …(2) }, …(1) }.

Validation

From libraries/typescript/packages/server: vitest run — 476 passed, 44 files.
tsc --noEmit, eslint, prettier --check — clean.
Monorepo preflight — 0 failing packages.


Summary by cubic

Fixes proxied resources losing their annotations and _meta fields when composed through use().

  • ProxyResource now declares and forwards these fields from upstream resources.
  • Tools' _meta is intentionally left unchanged; forwarding upstream _meta.ui.* would conflict with server-computed values.

Written for commit 94131b9. Summary will update on new commits.

Review in cubic

ResourceDefinition carries annotations and _meta, and both survive local
registration. The proxy mount copies only title, description and
mimeType, and ProxyResource does not even declare the other two, so an
upstream resource loses its client hints and its extension metadata the
moment the server is composed with use().

Both are documented on the resource descriptor and neither has a
framework-derived counterpart, unlike a tool's _meta.ui.* keys, which the
server computes from view and visibility. There is nothing to collide
with here, so forwarding is a straight passthrough.

Prompts need no equivalent change: PromptDefinition has no _meta.
Copilot AI lite review requested due to automatic review settings September 6, 2026 17:08

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

@pkg-pr-new

pkg-pr-new Bot commented Sep 6, 2026

Copy link
Copy Markdown

Open in StackBlitz

@mcp-use/agent

npm i https://pkg.pr.new/@mcp-use/agent@2469

@mcp-use/cli

npm i https://pkg.pr.new/@mcp-use/cli@2469

@mcp-use/client

npm i https://pkg.pr.new/@mcp-use/client@2469

create-mcp-use-app

npm i https://pkg.pr.new/create-mcp-use-app@2469

@mcp-use/inspector

npm i https://pkg.pr.new/@mcp-use/inspector@2469

mcp-use

npm i https://pkg.pr.new/mcp-use@2469

@mcp-use/tunnel

npm i https://pkg.pr.new/@mcp-use/tunnel@2469

commit: 94131b9

@cubic-dev-ai cubic-dev-ai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No issues found across 3 files

Re-trigger cubic

@github-actions

github-actions Bot commented Sep 6, 2026

Copy link
Copy Markdown
Contributor

TypeScript Conformance (current head)

Runner: @modelcontextprotocol/conformance@0.2.0-alpha.10
Spec versions: 2025-11-25 2026-07-28

Score: 2006/2012 passed (6 expected failures, 0 unexpected failures, 4 expected warnings, 0 unexpected warnings)

Suite Score Expected failures Unexpected failures Expected warnings Unexpected warnings
2025-11-25/client-browser/auth/basic-cimd-2026-09-06T17-10-00-327Z 12/12 0 0 0 0
2025-11-25/client-browser/auth/metadata-default-2026-09-06T17-10-00-327Z 12/12 0 0 0 0
2025-11-25/client-browser/auth/metadata-var1-2026-09-06T17-10-00-327Z 12/12 0 0 0 0
2025-11-25/client-browser/auth/metadata-var2-2026-09-06T17-10-00-327Z 12/12 0 0 0 0
2025-11-25/client-browser/auth/metadata-var3-2026-09-06T17-10-00-327Z 12/12 0 0 0 0
2025-11-25/client-browser/auth/pre-registration-2026-09-06T17-10-00-327Z 12/12 0 0 0 0
2025-11-25/client-browser/auth/scope-from-scopes-supported-2026-09-06T17-10-00-327Z 13/13 0 0 0 0
2025-11-25/client-browser/auth/scope-from-www-authenticate-2026-09-06T17-10-00-327Z 13/13 0 0 0 0
2025-11-25/client-browser/auth/scope-omitted-when-undefined-2026-09-06T17-10-00-327Z 13/13 0 0 0 0
2025-11-25/client-browser/auth/scope-retry-limit-2026-09-06T17-10-00-327Z 22/22 0 0 0 0
2025-11-25/client-browser/auth/scope-step-up-2026-09-06T17-10-00-327Z 21/21 0 0 0 0
2025-11-25/client-browser/auth/token-endpoint-auth-basic-2026-09-06T17-10-00-327Z 17/17 0 0 0 0
2025-11-25/client-browser/auth/token-endpoint-auth-none-2026-09-06T17-10-00-327Z 17/17 0 0 0 0
2025-11-25/client-browser/auth/token-endpoint-auth-post-2026-09-06T17-10-00-327Z 17/17 0 0 0 0
2025-11-25/client-browser/elicitation-sep1034-client-defaults-2026-09-06T17-10-00-327Z 5/5 0 0 0 0
2025-11-25/client-browser/initialize-2026-09-06T17-10-00-326Z 1/1 0 0 0 0
2025-11-25/client-browser/sse-retry-2026-09-06T17-10-00-327Z 3/3 0 0 0 0
2025-11-25/client-browser/tools_call-2026-09-06T17-10-00-326Z 1/1 0 0 0 0
2025-11-25/client-node/auth/basic-cimd-2026-09-06T17-09-43-974Z 12/12 0 0 0 0
2025-11-25/client-node/auth/metadata-default-2026-09-06T17-09-43-974Z 12/12 0 0 0 0
2025-11-25/client-node/auth/metadata-var1-2026-09-06T17-09-43-974Z 12/12 0 0 0 0
2025-11-25/client-node/auth/metadata-var2-2026-09-06T17-09-43-974Z 12/12 0 0 0 0
2025-11-25/client-node/auth/metadata-var3-2026-09-06T17-09-43-974Z 12/12 0 0 0 0
2025-11-25/client-node/auth/pre-registration-2026-09-06T17-09-43-974Z 12/12 0 0 0 0
2025-11-25/client-node/auth/scope-from-scopes-supported-2026-09-06T17-09-43-974Z 13/13 0 0 0 0
2025-11-25/client-node/auth/scope-from-www-authenticate-2026-09-06T17-09-43-974Z 13/13 0 0 0 0
2025-11-25/client-node/auth/scope-omitted-when-undefined-2026-09-06T17-09-43-974Z 13/13 0 0 0 0
2025-11-25/client-node/auth/scope-retry-limit-2026-09-06T17-09-43-974Z 22/22 0 0 0 0
2025-11-25/client-node/auth/scope-step-up-2026-09-06T17-09-43-974Z 21/21 0 0 0 0
2025-11-25/client-node/auth/token-endpoint-auth-basic-2026-09-06T17-09-43-974Z 17/17 0 0 0 0
2025-11-25/client-node/auth/token-endpoint-auth-none-2026-09-06T17-09-43-974Z 17/17 0 0 0 0
2025-11-25/client-node/auth/token-endpoint-auth-post-2026-09-06T17-09-43-974Z 17/17 0 0 0 0
2025-11-25/client-node/elicitation-sep1034-client-defaults-2026-09-06T17-09-43-974Z 5/5 0 0 0 0
2025-11-25/client-node/initialize-2026-09-06T17-09-43-973Z 1/1 0 0 0 0
2025-11-25/client-node/sse-retry-2026-09-06T17-09-43-974Z 3/3 0 0 0 0
2025-11-25/client-node/tools_call-2026-09-06T17-09-43-974Z 1/1 0 0 0 0
2025-11-25/client-react/auth/basic-cimd-2026-09-06T17-10-15-335Z 16/16 0 0 0 0
2025-11-25/client-react/auth/metadata-default-2026-09-06T17-10-15-335Z 15/15 0 0 0 0
2025-11-25/client-react/auth/metadata-var1-2026-09-06T17-10-15-335Z 15/15 0 0 0 0
2025-11-25/client-react/auth/metadata-var2-2026-09-06T17-10-15-335Z 15/15 0 0 0 0
2025-11-25/client-react/auth/metadata-var3-2026-09-06T17-10-15-335Z 12/12 0 0 0 0
2025-11-25/client-react/auth/pre-registration-2026-09-06T17-10-15-336Z 15/15 0 0 0 0
2025-11-25/client-react/auth/scope-from-scopes-supported-2026-09-06T17-10-15-336Z 17/17 0 0 0 0
2025-11-25/client-react/auth/scope-from-www-authenticate-2026-09-06T17-10-15-335Z 14/14 0 0 0 0
2025-11-25/client-react/auth/scope-omitted-when-undefined-2026-09-06T17-10-15-336Z 17/17 0 0 0 0
2025-11-25/client-react/auth/scope-retry-limit-2026-09-06T17-10-15-336Z 23/23 0 0 0 0
2025-11-25/client-react/auth/scope-step-up-2026-09-06T17-10-15-336Z 21/21 0 0 0 0
2025-11-25/client-react/auth/token-endpoint-auth-basic-2026-09-06T17-10-15-336Z 20/20 0 0 0 0
2025-11-25/client-react/auth/token-endpoint-auth-none-2026-09-06T17-10-15-336Z 20/20 0 0 0 0
2025-11-25/client-react/auth/token-endpoint-auth-post-2026-09-06T17-10-15-336Z 20/20 0 0 0 0
2025-11-25/client-react/elicitation-sep1034-client-defaults-2026-09-06T17-10-15-335Z 5/5 0 0 0 0
2025-11-25/client-react/initialize-2026-09-06T17-10-15-335Z 1/1 0 0 0 0
2025-11-25/client-react/sse-retry-2026-09-06T17-10-15-335Z 3/3 0 0 0 0
2025-11-25/client-react/tools_call-2026-09-06T17-10-15-335Z 1/1 0 0 0 0
2025-11-25/server/server-completion-complete-2026-09-06T17-09-42-379Z 1/1 0 0 0 0
2025-11-25/server/server-dns-rebinding-protection-2026-09-06T17-09-43-186Z 2/2 0 0 0 0
2025-11-25/server/server-elicitation-sep1034-defaults-2026-09-06T17-09-42-967Z 0/1 1 0 0 0
2025-11-25/server/server-elicitation-sep1330-enums-2026-09-06T17-09-43-007Z 0/1 1 0 0 0
2025-11-25/server/server-json-schema-2020-12-2026-09-06T17-09-42-953Z 7/7 0 0 0 0
2025-11-25/server/server-logging-set-level-2026-09-06T17-09-42-326Z 1/1 0 0 0 0
2025-11-25/server/server-ping-2026-09-06T17-09-42-355Z 1/1 0 0 0 0
2025-11-25/server/server-prompts-get-embedded-resource-2026-09-06T17-09-43-156Z 1/1 0 0 0 0
2025-11-25/server/server-prompts-get-simple-2026-09-06T17-09-43-124Z 1/1 0 0 0 0
2025-11-25/server/server-prompts-get-with-args-2026-09-06T17-09-43-140Z 1/1 0 0 0 0
2025-11-25/server/server-prompts-get-with-image-2026-09-06T17-09-43-174Z 1/1 0 0 0 0
2025-11-25/server/server-prompts-list-2026-09-06T17-09-43-108Z 1/1 0 0 0 0
2025-11-25/server/server-resources-list-2026-09-06T17-09-43-024Z 1/1 0 0 0 0
2025-11-25/server/server-resources-read-binary-2026-09-06T17-09-43-054Z 1/1 0 0 0 0
2025-11-25/server/server-resources-read-text-2026-09-06T17-09-43-039Z 1/1 0 0 0 0
2025-11-25/server/server-resources-subscribe-2026-09-06T17-09-43-081Z 0/1 1 0 0 0
2025-11-25/server/server-resources-templates-read-2026-09-06T17-09-43-067Z 1/1 0 0 0 0
2025-11-25/server/server-resources-unsubscribe-2026-09-06T17-09-43-094Z 0/1 1 0 0 0
2025-11-25/server/server-server-initialize-2026-09-06T17-09-42-228Z 1/1 0 0 0 0
2025-11-25/server/server-server-sse-multiple-streams-2026-09-06T17-09-42-997Z 0/0 0 0 1 0
2025-11-25/server/server-server-sse-polling-2026-09-06T17-09-42-984Z 0/0 0 0 3 0
2025-11-25/server/server-tools-call-audio-2026-09-06T17-09-42-455Z 1/1 0 0 0 0
2025-11-25/server/server-tools-call-elicitation-2026-09-06T17-09-42-936Z 0/1 1 0 0 0
2025-11-25/server/server-tools-call-embedded-resource-2026-09-06T17-09-42-471Z 1/1 0 0 0 0
2025-11-25/server/server-tools-call-error-2026-09-06T17-09-42-827Z 1/1 0 0 0 0
2025-11-25/server/server-tools-call-image-2026-09-06T17-09-42-439Z 1/1 0 0 0 0
2025-11-25/server/server-tools-call-mixed-content-2026-09-06T17-09-42-488Z 1/1 0 0 0 0
2025-11-25/server/server-tools-call-sampling-2026-09-06T17-09-42-916Z 0/1 1 0 0 0
2025-11-25/server/server-tools-call-simple-text-2026-09-06T17-09-42-420Z 1/1 0 0 0 0
2025-11-25/server/server-tools-call-with-logging-2026-09-06T17-09-42-503Z 1/1 0 0 0 0
2025-11-25/server/server-tools-call-with-progress-2026-09-06T17-09-42-847Z 1/1 0 0 0 0
2025-11-25/server/server-tools-list-2026-09-06T17-09-42-399Z 2/2 0 0 0 0
2026-07-28/client-browser/auth/authorization-server-migration-2026-09-06T17-11-00-085Z 26/26 0 0 0 0
2026-07-28/client-browser/auth/basic-cimd-2026-09-06T17-11-00-085Z 11/11 0 0 0 0
2026-07-28/client-browser/auth/iss-normalized-2026-09-06T17-11-00-085Z 8/8 0 0 0 0
2026-07-28/client-browser/auth/iss-not-advertised-2026-09-06T17-11-00-085Z 13/13 0 0 0 0
2026-07-28/client-browser/auth/iss-supported-2026-09-06T17-11-00-085Z 13/13 0 0 0 0
2026-07-28/client-browser/auth/iss-supported-missing-2026-09-06T17-11-00-085Z 8/8 0 0 0 0
2026-07-28/client-browser/auth/iss-unexpected-2026-09-06T17-11-00-085Z 8/8 0 0 0 0
2026-07-28/client-browser/auth/iss-wrong-issuer-2026-09-06T17-11-00-085Z 8/8 0 0 0 0
2026-07-28/client-browser/auth/metadata-default-2026-09-06T17-11-00-084Z 12/12 0 0 0 0
2026-07-28/client-browser/auth/metadata-issuer-mismatch-2026-09-06T17-11-00-085Z 3/3 0 0 0 0
2026-07-28/client-browser/auth/metadata-var1-2026-09-06T17-11-00-084Z 12/12 0 0 0 0
2026-07-28/client-browser/auth/metadata-var2-2026-09-06T17-11-00-084Z 12/12 0 0 0 0
2026-07-28/client-browser/auth/metadata-var3-2026-09-06T17-11-00-084Z 12/12 0 0 0 0
2026-07-28/client-browser/auth/offline-access-not-supported-2026-09-06T17-11-00-085Z 13/13 0 0 0 0
2026-07-28/client-browser/auth/offline-access-scope-2026-09-06T17-11-00-085Z 11/11 0 0 0 0
2026-07-28/client-browser/auth/pre-registration-2026-09-06T17-11-00-085Z 11/11 0 0 0 0
2026-07-28/client-browser/auth/resource-mismatch-2026-09-06T17-11-00-085Z 3/3 0 0 0 0
2026-07-28/client-browser/auth/scope-from-scopes-supported-2026-09-06T17-11-00-085Z 13/13 0 0 0 0
2026-07-28/client-browser/auth/scope-from-www-authenticate-2026-09-06T17-11-00-085Z 13/13 0 0 0 0
2026-07-28/client-browser/auth/scope-omitted-when-undefined-2026-09-06T17-11-00-085Z 13/13 0 0 0 0
2026-07-28/client-browser/auth/scope-retry-limit-2026-09-06T17-11-00-085Z 23/23 0 0 0 0
2026-07-28/client-browser/auth/scope-step-up-2026-09-06T17-11-00-085Z 24/24 0 0 0 0
2026-07-28/client-browser/auth/token-endpoint-auth-basic-2026-09-06T17-11-00-085Z 17/17 0 0 0 0
2026-07-28/client-browser/auth/token-endpoint-auth-none-2026-09-06T17-11-00-085Z 17/17 0 0 0 0
2026-07-28/client-browser/auth/token-endpoint-auth-post-2026-09-06T17-11-00-085Z 17/17 0 0 0 0
2026-07-28/client-browser/http-custom-headers-2026-09-06T17-11-00-085Z 18/18 0 0 0 0
2026-07-28/client-browser/http-invalid-tool-headers-2026-09-06T17-11-00-085Z 11/11 0 0 0 0
2026-07-28/client-browser/http-standard-headers-2026-09-06T17-11-00-085Z 9/9 0 0 0 0
2026-07-28/client-browser/json-schema-ref-no-deref-2026-09-06T17-11-00-085Z 1/1 0 0 0 0
2026-07-28/client-browser/request-metadata-2026-09-06T17-11-00-084Z 8/8 0 0 0 0
2026-07-28/client-browser/sep-2322-client-request-state-2026-09-06T17-11-00-085Z 5/5 0 0 0 0
2026-07-28/client-browser/tools_call-2026-09-06T17-11-00-084Z 1/1 0 0 0 0
2026-07-28/client-node/auth/authorization-server-migration-2026-09-06T17-10-42-935Z 26/26 0 0 0 0
2026-07-28/client-node/auth/basic-cimd-2026-09-06T17-10-42-935Z 11/11 0 0 0 0
2026-07-28/client-node/auth/iss-normalized-2026-09-06T17-10-42-935Z 8/8 0 0 0 0
2026-07-28/client-node/auth/iss-not-advertised-2026-09-06T17-10-42-935Z 13/13 0 0 0 0
2026-07-28/client-node/auth/iss-supported-2026-09-06T17-10-42-935Z 13/13 0 0 0 0
2026-07-28/client-node/auth/iss-supported-missing-2026-09-06T17-10-42-935Z 8/8 0 0 0 0
2026-07-28/client-node/auth/iss-unexpected-2026-09-06T17-10-42-935Z 8/8 0 0 0 0
2026-07-28/client-node/auth/iss-wrong-issuer-2026-09-06T17-10-42-935Z 8/8 0 0 0 0
2026-07-28/client-node/auth/metadata-default-2026-09-06T17-10-42-935Z 12/12 0 0 0 0
2026-07-28/client-node/auth/metadata-issuer-mismatch-2026-09-06T17-10-42-935Z 3/3 0 0 0 0
2026-07-28/client-node/auth/metadata-var1-2026-09-06T17-10-42-935Z 12/12 0 0 0 0
2026-07-28/client-node/auth/metadata-var2-2026-09-06T17-10-42-935Z 12/12 0 0 0 0
2026-07-28/client-node/auth/metadata-var3-2026-09-06T17-10-42-935Z 12/12 0 0 0 0
2026-07-28/client-node/auth/offline-access-not-supported-2026-09-06T17-10-42-935Z 13/13 0 0 0 0
2026-07-28/client-node/auth/offline-access-scope-2026-09-06T17-10-42-935Z 11/11 0 0 0 0
2026-07-28/client-node/auth/pre-registration-2026-09-06T17-10-42-935Z 11/11 0 0 0 0
2026-07-28/client-node/auth/resource-mismatch-2026-09-06T17-10-42-935Z 3/3 0 0 0 0
2026-07-28/client-node/auth/scope-from-scopes-supported-2026-09-06T17-10-42-935Z 13/13 0 0 0 0
2026-07-28/client-node/auth/scope-from-www-authenticate-2026-09-06T17-10-42-935Z 13/13 0 0 0 0
2026-07-28/client-node/auth/scope-omitted-when-undefined-2026-09-06T17-10-42-935Z 13/13 0 0 0 0
2026-07-28/client-node/auth/scope-retry-limit-2026-09-06T17-10-42-935Z 23/23 0 0 0 0
2026-07-28/client-node/auth/scope-step-up-2026-09-06T17-10-42-935Z 24/24 0 0 0 0
2026-07-28/client-node/auth/token-endpoint-auth-basic-2026-09-06T17-10-42-935Z 17/17 0 0 0 0
2026-07-28/client-node/auth/token-endpoint-auth-none-2026-09-06T17-10-42-935Z 17/17 0 0 0 0
2026-07-28/client-node/auth/token-endpoint-auth-post-2026-09-06T17-10-42-935Z 17/17 0 0 0 0
2026-07-28/client-node/http-custom-headers-2026-09-06T17-10-42-935Z 18/18 0 0 0 0
2026-07-28/client-node/http-invalid-tool-headers-2026-09-06T17-10-42-935Z 11/11 0 0 0 0
2026-07-28/client-node/http-standard-headers-2026-09-06T17-10-42-935Z 9/9 0 0 0 0
2026-07-28/client-node/json-schema-ref-no-deref-2026-09-06T17-10-42-935Z 1/1 0 0 0 0
2026-07-28/client-node/request-metadata-2026-09-06T17-10-42-935Z 8/8 0 0 0 0
2026-07-28/client-node/sep-2322-client-request-state-2026-09-06T17-10-42-935Z 5/5 0 0 0 0
2026-07-28/client-node/tools_call-2026-09-06T17-10-42-934Z 1/1 0 0 0 0
2026-07-28/client-react/auth/authorization-server-migration-2026-09-06T17-11-17-196Z 27/27 0 0 0 0
2026-07-28/client-react/auth/basic-cimd-2026-09-06T17-11-17-196Z 15/15 0 0 0 0
2026-07-28/client-react/auth/iss-normalized-2026-09-06T17-11-17-196Z 11/11 0 0 0 0
2026-07-28/client-react/auth/iss-not-advertised-2026-09-06T17-11-17-196Z 16/16 0 0 0 0
2026-07-28/client-react/auth/iss-supported-2026-09-06T17-11-17-196Z 16/16 0 0 0 0
2026-07-28/client-react/auth/iss-supported-missing-2026-09-06T17-11-17-196Z 11/11 0 0 0 0
2026-07-28/client-react/auth/iss-unexpected-2026-09-06T17-11-17-196Z 11/11 0 0 0 0
2026-07-28/client-react/auth/iss-wrong-issuer-2026-09-06T17-11-17-196Z 11/11 0 0 0 0
2026-07-28/client-react/auth/metadata-default-2026-09-06T17-11-17-196Z 15/15 0 0 0 0
2026-07-28/client-react/auth/metadata-issuer-mismatch-2026-09-06T17-11-17-196Z 3/3 0 0 0 0
2026-07-28/client-react/auth/metadata-var1-2026-09-06T17-11-17-196Z 15/15 0 0 0 0
2026-07-28/client-react/auth/metadata-var2-2026-09-06T17-11-17-196Z 15/15 0 0 0 0
2026-07-28/client-react/auth/metadata-var3-2026-09-06T17-11-17-196Z 12/12 0 0 0 0
2026-07-28/client-react/auth/offline-access-not-supported-2026-09-06T17-11-17-196Z 17/17 0 0 0 0
2026-07-28/client-react/auth/offline-access-scope-2026-09-06T17-11-17-196Z 15/15 0 0 0 0
2026-07-28/client-react/auth/pre-registration-2026-09-06T17-11-17-196Z 14/14 0 0 0 0
2026-07-28/client-react/auth/resource-mismatch-2026-09-06T17-11-17-196Z 3/3 0 0 0 0
2026-07-28/client-react/auth/scope-from-scopes-supported-2026-09-06T17-11-17-196Z 17/17 0 0 0 0
2026-07-28/client-react/auth/scope-from-www-authenticate-2026-09-06T17-11-17-196Z 14/14 0 0 0 0
2026-07-28/client-react/auth/scope-omitted-when-undefined-2026-09-06T17-11-17-196Z 17/17 0 0 0 0
2026-07-28/client-react/auth/scope-retry-limit-2026-09-06T17-11-17-196Z 23/23 0 0 0 0
2026-07-28/client-react/auth/scope-step-up-2026-09-06T17-11-17-196Z 24/24 0 0 0 0
2026-07-28/client-react/auth/token-endpoint-auth-basic-2026-09-06T17-11-17-196Z 20/20 0 0 0 0
2026-07-28/client-react/auth/token-endpoint-auth-none-2026-09-06T17-11-17-196Z 20/20 0 0 0 0
2026-07-28/client-react/auth/token-endpoint-auth-post-2026-09-06T17-11-17-196Z 20/20 0 0 0 0
2026-07-28/client-react/http-custom-headers-2026-09-06T17-11-17-196Z 18/18 0 0 0 0
2026-07-28/client-react/http-invalid-tool-headers-2026-09-06T17-11-17-196Z 11/11 0 0 0 0
2026-07-28/client-react/http-standard-headers-2026-09-06T17-11-17-196Z 6/6 0 0 0 0
2026-07-28/client-react/json-schema-ref-no-deref-2026-09-06T17-11-17-196Z 1/1 0 0 0 0
2026-07-28/client-react/request-metadata-2026-09-06T17-11-17-196Z 8/8 0 0 0 0
2026-07-28/client-react/sep-2322-client-request-state-2026-09-06T17-11-17-196Z 5/5 0 0 0 0
2026-07-28/client-react/tools_call-2026-09-06T17-11-17-195Z 1/1 0 0 0 0
2026-07-28/server/server-caching-2026-09-06T17-10-41-967Z 7/7 0 0 0 0
2026-07-28/server/server-completion-complete-2026-09-06T17-10-41-778Z 1/1 0 0 0 0
2026-07-28/server/server-dns-rebinding-protection-2026-09-06T17-10-41-955Z 2/2 0 0 0 0
2026-07-28/server/server-http-custom-header-server-validation-2026-09-06T17-10-42-020Z 9/9 0 0 0 0
2026-07-28/server/server-http-header-validation-2026-09-06T17-10-41-990Z 13/13 0 0 0 0
2026-07-28/server/server-input-required-result-basic-elicitation-2026-09-06T17-10-42-041Z 2/2 0 0 0 0
2026-07-28/server/server-input-required-result-basic-list-roots-2026-09-06T17-10-42-060Z 2/2 0 0 0 0
2026-07-28/server/server-input-required-result-basic-sampling-2026-09-06T17-10-42-051Z 2/2 0 0 0 0
2026-07-28/server/server-input-required-result-capability-check-2026-09-06T17-10-42-150Z 1/1 0 0 0 0
2026-07-28/server/server-input-required-result-ignore-extra-params-2026-09-06T17-10-42-157Z 1/1 0 0 0 0
2026-07-28/server/server-input-required-result-missing-input-response-2026-09-06T17-10-42-108Z 1/1 0 0 0 0
2026-07-28/server/server-input-required-result-multi-round-2026-09-06T17-10-42-092Z 3/3 0 0 0 0
2026-07-28/server/server-input-required-result-multiple-input-requests-2026-09-06T17-10-42-082Z 2/2 0 0 0 0
2026-07-28/server/server-input-required-result-non-tool-request-2026-09-06T17-10-42-114Z 2/2 0 0 0 0
2026-07-28/server/server-input-required-result-request-state-2026-09-06T17-10-42-069Z 2/2 0 0 0 0
2026-07-28/server/server-input-required-result-result-type-2026-09-06T17-10-42-124Z 1/1 0 0 0 0
2026-07-28/server/server-input-required-result-tampered-state-2026-09-06T17-10-42-142Z 1/1 0 0 0 0
2026-07-28/server/server-input-required-result-unsupported-methods-2026-09-06T17-10-42-128Z 1/1 0 0 0 0
2026-07-28/server/server-input-required-result-validate-input-2026-09-06T17-10-42-161Z 2/2 0 0 0 0
2026-07-28/server/server-json-schema-2020-12-2026-09-06T17-10-41-885Z 7/7 0 0 0 0
2026-07-28/server/server-prompts-get-embedded-resource-2026-09-06T17-10-41-946Z 1/1 0 0 0 0
2026-07-28/server/server-prompts-get-simple-2026-09-06T17-10-41-935Z 1/1 0 0 0 0
2026-07-28/server/server-prompts-get-with-args-2026-09-06T17-10-41-941Z 1/1 0 0 0 0
2026-07-28/server/server-prompts-get-with-image-2026-09-06T17-10-41-951Z 1/1 0 0 0 0
2026-07-28/server/server-prompts-list-2026-09-06T17-10-41-930Z 1/1 0 0 0 0
2026-07-28/server/server-resources-list-2026-09-06T17-10-41-906Z 1/1 0 0 0 0
2026-07-28/server/server-resources-read-binary-2026-09-06T17-10-41-915Z 1/1 0 0 0 0
2026-07-28/server/server-resources-read-text-2026-09-06T17-10-41-911Z 1/1 0 0 0 0
2026-07-28/server/server-resources-templates-read-2026-09-06T17-10-41-921Z 1/1 0 0 0 0
2026-07-28/server/server-sep-2164-resource-not-found-2026-09-06T17-10-41-926Z 3/3 0 0 0 0
2026-07-28/server/server-server-sse-multiple-streams-2026-09-06T17-10-41-892Z 1/1 0 0 0 0
2026-07-28/server/server-server-stateless-2026-09-06T17-10-40-073Z 30/30 0 0 0 0
2026-07-28/server/server-tools-call-audio-2026-09-06T17-10-41-807Z 1/1 0 0 0 0
2026-07-28/server/server-tools-call-embedded-resource-2026-09-06T17-10-41-812Z 1/1 0 0 0 0
2026-07-28/server/server-tools-call-error-2026-09-06T17-10-41-822Z 1/1 0 0 0 0
2026-07-28/server/server-tools-call-image-2026-09-06T17-10-41-802Z 1/1 0 0 0 0
2026-07-28/server/server-tools-call-mixed-content-2026-09-06T17-10-41-817Z 1/1 0 0 0 0
2026-07-28/server/server-tools-call-simple-text-2026-09-06T17-10-41-796Z 1/1 0 0 0 0
2026-07-28/server/server-tools-call-with-progress-2026-09-06T17-10-41-828Z 1/1 0 0 0 0
2026-07-28/server/server-tools-list-2026-09-06T17-10-41-787Z 2/2 0 0 0 0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants