Spaces:
Running
Running
Jeremiah Lowin commited on
Commit ·
a17b44c
1
Parent(s): 06229d9
Update note
Browse files
docs/servers/resources.mdx
CHANGED
|
@@ -251,9 +251,10 @@ With these two templates defined, clients can request a variety of resources:
|
|
| 251 |
|
| 252 |
<VersionBadge version="2.2.4" />
|
| 253 |
|
| 254 |
-
<
|
| 255 |
-
Please note:
|
| 256 |
-
</
|
|
|
|
| 257 |
|
| 258 |
Resource templates support wildcard parameters that can match multiple path segments. While standard parameters (`{param}`) only match a single path segment and don't cross "/" boundaries, wildcard parameters (`{param*}`) can capture multiple segments including slashes. Wildcards capture all subsequent path segments *up until* the defined part of the URI template (whether literal or another parameter). This allows you to have multiple wildcard parameters in a single URI template.
|
| 259 |
|
|
|
|
| 251 |
|
| 252 |
<VersionBadge version="2.2.4" />
|
| 253 |
|
| 254 |
+
<Tip>
|
| 255 |
+
Please note: FastMCP's support for wildcard parameters is an **extension** of the Model Context Protocol standard, which otherwise follows RFC 6570. Since all template processing happens in the FastMCP server, this should not cause any compatibility issues with other MCP implementations.
|
| 256 |
+
</Tip>
|
| 257 |
+
|
| 258 |
|
| 259 |
Resource templates support wildcard parameters that can match multiple path segments. While standard parameters (`{param}`) only match a single path segment and don't cross "/" boundaries, wildcard parameters (`{param*}`) can capture multiple segments including slashes. Wildcards capture all subsequent path segments *up until* the defined part of the URI template (whether literal or another parameter). This allows you to have multiple wildcard parameters in a single URI template.
|
| 260 |
|