The Model Address Standard (MAS) defines a minimal, client-side convention for identifying an AI model using a URI fragment parameter.
MAS enables portable, shareable references to specific models without modifying HTTP semantics or requiring server-side support.
MAS does not define transport behavior, authentication, message formats, or inference parameters.
MAS:
If a client does not implement MAS, the URI behaves as a normal HTTP or HTTPS URL.
A MAS address is any valid HTTP or HTTPS URI containing a fragment parameter m.
https://authority[:port][/path]#m=<model-identifier>
MAS is layered on top of RFC 3986. This specification defines only fragment semantics and does not redefine URI grammar.
The m parameter identifies the model to be used by the client.
Syntax
m = model-identifier
model-identifier = 1*( ALPHA / DIGIT / "-" / "_" / "." / "/" / ":" )
Requirements
MAS does not define model naming conventions.
When processing a MAS address:
Fragment parsing MUST occur before percent-decoding to avoid ambiguity.
Clients:
Future revisions of MAS may define additional standard parameters.
For consistent client-side comparison and deduplication:
Note: Because the fragment is never sent to the server, canonicalization is purely a client concern and does not affect resource identity.
Example:
Canonical:
https://api.example.com#m=model-a
Non-canonical:
https://API.EXAMPLE.COM#x=1&m=model-a
https://localhost:11434#m=mistral
https://api.anthropic.com#m=claude-sonnet-4-5
https://bedrock.us-east-1.amazonaws.com#m=anthropic.claude-v2
https://inference.company.io:8080#m=meta-llama/Llama-2-70b
https://models.example.com#m=huggingface.co:meta-llama/Llama-2-70b
MAS does not define:
Such concerns are intentionally out of scope.
RFC 3986 — Uniform Resource Identifier (URI): Generic Syntax
Brought to you by DA`/50.