What this read moved
1–6 of 6community/interest-groups/financial-services Changed · +1 / -1 lines
from line 97
9797Meetings are held 16:00–17:00 London (BST/GMT). An agenda is shared in `#financial-services-ig`
9898ahead of each call, and notes with decisions and action items are published afterwards.
9999
100Discord: [#financial-services-ig](https://discord.gg/NzkBHsrGf)
100Discord: [#financial-services-ig](https://discord.gg/6CSzBmMkjX)
101101
102102## Discussion Topics
103103
seps/1330-elicitation-enum-schema-improvements-and-standards Changed · +2 / -2 lines
from line 194
194194 "title": "Color Selection",
195195 "description": "Choose your favorite color",
196196 "enum": ["#FF0000", "#00FF00", "#0000FF"],
197 “enumNames”: ["Red", "Green", "Blue"],
198 "default": "Green"
197 "enumNames": ["Red", "Green", "Blue"],
198 "default": "#00FF00"
199199}
200200```
201201
specification/2025-06-18/server/tools Changed · +1 / -2 lines
from line 218
218218{
219219 "type": "image",
220220 "data": "base64-encoded-data",
221 "mimeType": "image/png"
221 "mimeType": "image/png",
222222 "annotations": {
223223 "audience": ["user"],
224224 "priority": 0.9
225225 }
226
227226}
228227```
229228
specification/2026-07-28/server/resources Changed · +1 / -1 lines
from line 59
5959
6060Servers may advertise either feature independently, together or neither.
6161
62Serves that support neither `listChanged` or `subscribe` may omit it:
62Servers that support neither `listChanged` nor `subscribe` may omit it:
6363
6464```json theme={null}
6565{
specification/draft/basic/authorization/client-registration Changed · +2 / -2 lines
from line 58
5858 "logo_uri": "https://app.example.com/logo.png",
5959 "redirect_uris": [
6060 "http://127.0.0.1:3000/callback",
61 "http://localhost:3000/callback"
61 "http://[::1]:3000/callback"
6262 ],
6363 "grant_types": ["authorization_code"],
6464 "response_types": ["code"],
from line 81
8181 Note over Client,Metadata: Client hosts metadata at<br/>https://app.example.com/oauth/metadata.json
8282
8383 User->>Client: Initiates connection to MCP Server
84 Client->>Server: Authorization Request<br/>client_id=https://app.example.com/oauth/metadata.json<br/>redirect_uri=http://localhost:3000/callback
84 Client->>Server: Authorization Request<br/>client_id=https://app.example.com/oauth/metadata.json<br/>redirect_uri=http://127.0.0.1:3000/callback
8585
8686 Server->>User: Authentication prompt
8787 User->>Server: Provides credentials
specification/draft/server/resources Changed · +1 / -1 lines
from line 59
5959
6060Servers may advertise either feature independently, together or neither.
6161
62Serves that support neither `listChanged` or `subscribe` may omit it:
62Servers that support neither `listChanged` nor `subscribe` may omit it:
6363
6464```json theme={null}
6565{