-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathremote-with-asm.server.json
More file actions
73 lines (73 loc) · 2.16 KB
/
remote-with-asm.server.json
File metadata and controls
73 lines (73 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json",
"name": "io.asm.example/remote-search",
"description": "Remote MCP server example with ASM pricing, SLA, quality, and provenance metadata.",
"status": "active",
"repository": {
"url": "https://github.com/calebguo007/asm-spec",
"source": "github"
},
"version": "1.0.0",
"remotes": [
{
"type": "streamable-http",
"url": "https://mcp.example.com/search"
}
],
"_meta": {
"io.modelcontextprotocol.registry/publisher-provided": {
"asm": {
"asm_version": "0.3",
"service_id": "example/remote-search@1.0",
"taxonomy": "tool.data.search",
"display_name": "Example Remote Search MCP",
"provenance": {
"source_url": "https://mcp.example.com/.well-known/asm",
"retrieved_at": "2026-05-08T00:00:00Z",
"last_verified_at": "2026-05-08T00:00:00Z",
"verification_status": "self_reported",
"notes": "Remote MCP server publishes the same ASM document at .well-known/asm."
},
"pricing": {
"billing_dimensions": [
{
"dimension": "query",
"unit": "per_1K",
"cost_per_unit": 2.5,
"currency": "USD"
}
],
"free_tier": {
"dimension": "query",
"limit": 1000,
"period": "monthly"
}
},
"quality": {
"metrics": [
{
"name": "answer_relevance",
"score": 0.91,
"scale": "0-1",
"benchmark": "internal search relevance eval",
"self_reported": true
}
]
},
"sla": {
"latency_p50": "650ms",
"latency_p99": "2s",
"uptime": 0.995,
"rate_limit": "60 req/min",
"regions": ["us-east-1", "eu-west-1"]
},
"payment": {
"methods": ["stripe"],
"auth_type": "oauth2",
"signup_url": "https://mcp.example.com/signup"
}
},
"asm_url": "https://mcp.example.com/.well-known/asm"
}
}
}