-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOASF.json
More file actions
535 lines (535 loc) · 17.9 KB
/
OASF.json
File metadata and controls
535 lines (535 loc) · 17.9 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
{
"schema_version": "0.7.0",
"type": "service",
"name": "wallet4agent/mcp-server",
"id": "did:web:wallet4agent.com#mcp-server",
"description": "Wallet4Agent MCP server for decentralized and regulated identity: DIDs, Verifiable Credentials (SD-JWT VC & W3C JSON-LD), OIDC4VCI issuance, OpenID4VP verification, Linked Verifiable Presentations, and verifier flows for data wallets (QR or email-based proofs of over-18, verified email, and verified identity profile) — enabling trust and auditability for the Agentic Web.",
"homepage": "https://wallet4agent.com/",
"documentation": "https://wallet4agent.com/documentation/get_started",
"owner": {
"type": "organization",
"id": "did:web:talao.io",
"name": "Web3 Digital Wallet Team"
},
"tags": [
"Wallet4Agent",
"Agentic Web",
"MCP",
"A2A",
"DID",
"Verifiable Credentials",
"SD-JWT VC",
"JSON-LD VC",
"OIDC4VCI",
"OpenID4VP",
"Linked VP",
"identity",
"trust",
"verifier",
"data wallet",
"age verification",
"email verification",
"profile verification"
],
"skills": [
{
"name": "identity.verification",
"id": "identity.verification"
},
{
"name": "credentials.wallet",
"id": "credentials.wallet"
},
{
"name": "credentials.presentation",
"id": "credentials.presentation"
},
{
"name": "credentials.issuance",
"id": "credentials.issuance"
},
{
"name": "cryptographic.signing",
"id": "cryptographic.signing"
}
],
"security": {
"authentication": [
{
"type": "bearer_token",
"header": "Authorization",
"scheme": "Bearer",
"description": "Use Authorization: Bearer <token> or X-API-KEY to authenticate with the Wallet4Agent MCP server."
}
],
"data_classification": "sensitive",
"notes": [
"Handles verifiable credentials and identity data for agents and humans.",
"Uses short-lived Redis state for verification and authentication flows.",
"Token types include PATs for dev/agent roles and guest access for onboarding."
]
},
"modules": [
{
"type": "mcp_server",
"name": "com.wallet4agent/mcp-server",
"description": "MCP server exposing wallet and verifier tools for AI agents, including OIDC4VCI credential offers, OIDC4VP verification, agent-to-agent authentication, and wallet inspection tools.",
"transports": [
{
"kind": "http",
"url": "https://wallet4agent.com/mcp",
"methods": [
"POST"
],
"protocol": "jsonrpc-2.0",
"info": "Primary MCP JSON-RPC endpoint."
},
{
"kind": "http",
"url": "https://wallet4agent.com/mcp/info",
"methods": [
"GET"
],
"protocol": "http-json",
"info": "Human/machine-readable MCP info endpoint."
},
{
"kind": "http",
"url": "https://wallet4agent.com/mcp/healthz",
"methods": [
"GET"
],
"protocol": "http-json",
"info": "Health check endpoint."
}
],
"auth": {
"type": "bearer_token",
"header": "Authorization",
"scheme": "Bearer",
"description": "Send Authorization: Bearer <token> to authenticate with the MCP server."
},
"protocol": {
"name": "mcp",
"protocolVersion": "2025-06-18",
"serverInfo": {
"name": "MCP server for data wallet",
"version": "1.4.0"
},
"capabilities": {
"tools": {
"listChanged": true
},
"prompts": {
"listChanged": true
},
"resources": {
"listChanged": true
},
"logging": {}
}
},
"roles": [
"guest",
"agent",
"dev"
],
"tools": [
{
"name": "create_agent_identifier_and_wallet",
"role": "guest",
"description": "Create a new Agent identifier (DID) and an attached wallet for that Agent, after authenticating the human owner via an external identity provider.",
"input_schema": {
"type": "object",
"properties": {
"owners_login": {
"type": "string",
"description": "Login identifier of the human owner (for the chosen identity provider)."
},
"owners_identity_provider": {
"type": "string",
"description": "Identifier of the identity provider for the owner (e.g. Google, Microsoft, etc.)."
}
},
"required": [
"owners_login",
"owners_identity_provider"
],
"additionalProperties": false
}
},
{
"name": "add_authentication_key",
"role": "dev",
"description": "Register an additional authentication key for this Agent's DID, binding a new public key into its DID Document / wallet configuration.",
"input_schema": {
"type": "object",
"properties": {
"public_key": {
"type": "string",
"description": "The public key to add as an authentication method."
}
},
"required": [
"public_key"
],
"additionalProperties": false
}
},
{
"name": "get_configuration",
"role": "dev",
"description": "Retrieve the Wallet4Agent configuration currently applied to this Agent (PATs, wallet mode, human-in-the-loop, etc.).",
"input_schema": {
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
},
{
"name": "update_configuration",
"role": "dev",
"description": "Update the Wallet4Agent configuration for this Agent (e.g. flags such as always_human_in_the_loop).",
"input_schema": {
"type": "object",
"properties": {},
"required": [],
"additionalProperties": true
}
},
{
"name": "delete_identity",
"role": "dev",
"description": "Delete this Agent's identity and wallet (dangerous operation).",
"input_schema": {
"type": "object",
"properties": {
"agent_identifier": {
"type": "string",
"description": "The Agent DID; must match the authenticated dev's Agent identifier."
}
},
"required": [
"agent_identifier"
],
"additionalProperties": false
}
},
{
"name": "accept_credential_offer",
"role": "agent",
"description": "Accept an OIDC4VCI credential offer on behalf of this Agent and return the issued credential (attestation).",
"input_schema": {
"type": "object",
"properties": {
"credential_offer": {
"type": "string",
"description": "An OIDC4VCI credential_offer JSON object or credential_offer_uri string."
}
},
"required": [
"credential_offer"
],
"additionalProperties": false
}
},
{
"name": "sign_text_message",
"role": "agent",
"description": "Sign a human-readable text message using this Agent's DID and private keys, returning a base64-encoded signature.",
"input_schema": {
"type": "object",
"properties": {
"message": {
"type": "string",
"description": "The text message to sign."
}
},
"required": [
"message"
],
"additionalProperties": false
}
},
{
"name": "sign_json_payload",
"role": "agent",
"description": "Sign a JSON payload using this Agent's DID and private keys, returning a JWS in Compact Serialization.",
"input_schema": {
"type": "object",
"properties": {
"payload": {
"type": "string",
"description": "The JSON payload as a string."
}
},
"required": [
"payload"
],
"additionalProperties": false
}
},
{
"name": "get_this_agent_data",
"role": "agent",
"description": "Retrieve a high-level overview of this Agent's identity and attached wallet (DID, wallet endpoint, number of attestations, human-in-the-loop flag).",
"input_schema": {
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
},
{
"name": "get_attestations_of_this_wallet",
"role": "agent",
"description": "List all attestations (verifiable credentials) stored in the wallet attached to this Agent.",
"input_schema": {
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
},
{
"name": "get_attestations_of_another_agent",
"role": "agent",
"description": "Resolve another Agent's DID and retrieve its published attestations from Linked Verifiable Presentations.",
"input_schema": {
"type": "object",
"properties": {
"agent_identifier": {
"type": "string",
"description": "The DID of the other Agent whose published attestations should be listed."
}
},
"required": [
"agent_identifier"
],
"additionalProperties": false
}
},
{
"name": "help_wallet4agent",
"role": "agent",
"description": "Explain to a human developer how to install and use Wallet4Agent MCP server, obtain a PAT, create an Agent DID and wallet, and wire everything together securely.",
"input_schema": {
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
},
{
"name": "start_user_verification",
"role": "agent",
"description": "Start an email-based OIDC4VP user verification. Sends the user an email with a link that opens their identity wallet to prove either profile data or age (over 18).",
"input_schema": {
"type": "object",
"properties": {
"scope": {
"type": "string",
"enum": [
"over18",
"profile"
],
"description": "Verification scope: 'profile' (first name, last name, birth date) or 'over18' (age over 18 assertion)."
},
"user_email": {
"type": "string",
"description": "Email address of the user receiving the verification invitation."
}
},
"required": [
"scope",
"user_email"
],
"additionalProperties": false
}
},
{
"name": "poll_user_verification",
"role": "agent",
"description": "Poll the result of a previously started user verification using the verification_request_id.",
"input_schema": {
"type": "object",
"properties": {
"verification_request_id": {
"type": "string",
"description": "Opaque verification_request_id returned by start_user_verification."
}
},
"required": [
"verification_request_id"
],
"additionalProperties": false
}
},
{
"name": "start_agent_authentication",
"role": "agent",
"description": "Start an agent-to-agent OIDC4VP authentication with another Agent DID, resolving its DID Document and calling its OIDC4VP endpoint.",
"input_schema": {
"type": "object",
"properties": {
"agent_identifier": {
"type": "string",
"description": "The DID of the other Agent to authenticate."
}
},
"required": [
"agent_identifier"
],
"additionalProperties": false
}
},
{
"name": "poll_agent_authentication",
"role": "agent",
"description": "Poll the status of an agent-to-agent authentication flow using the authentication_request_id.",
"input_schema": {
"type": "object",
"properties": {
"authentication_request_id": {
"type": "string",
"description": "Opaque authentication_request_id returned by start_agent_authentication."
}
},
"required": [
"authentication_request_id"
],
"additionalProperties": false
}
},
{
"name": "publish_attestation",
"description": "Publish one of this Agent's stored attestations as a Linked Verifiable. Presentation in the DID Document. The attestation itself is already stored in the wallet; this tool only exposes it via a Linked VP service. Supports both did:web and did:cheqd identifiers.",
"inputSchema": {
"type": "object",
"properties": {
"attestation_id": {
"type": "integer",
"description": "The local Attestation ID (from get_attestations_of_this_wallet structuredContent.id) to publish."
}
},
"required": ["attestation_id"]
}
},
{
"name": "unpublish_attestation",
"description": "Unpublish one of this Agent's previously published attestations: it removes the Linked Verifiable Presentation from the DID Document and from the wallet's linked_vp registry, but keeps the credential stored locally. Supports both did:web and did:cheqd identifiers.",
"inputSchema": {
"type": "object",
"properties": {
"attestation_id": {
"type": "integer",
"description": "The local Attestation ID (from get_attestations_of_this_wallet structuredContent.id) to unpublish."
}
},
"required": ["attestation_id"]
}
}
],
"prompts": [
{
"name": "wallet4agent.explain_verification_flow",
"description": "Explain to a human how the email-based Wallet4Agent verification flow works for a given scope (profile or over18).",
"input_schema": {
"type": "object",
"properties": {
"scope": {
"type": "string",
"enum": [
"over18",
"profile"
]
}
},
"required": [
"scope"
],
"additionalProperties": false
}
}
],
"resources": [
{
"uri": "wallet4agent/docs/get_started",
"name": "Wallet4Agent – Getting Started for Developers",
"description": "Markdown documentation explaining how to create an Agent identity and wallet, obtain a dev PAT, and configure authentication.",
"mimeType": "text/markdown",
"role": [
"guest",
"agent"
]
},
{
"uri": "wallet4agent/this_agent",
"name": "This Agent identity and wallet",
"description": "Overview of this Agent's DID and wallet (endpoint, number of attestations, human-in-the-loop flag).",
"mimeType": "application/json",
"role": [
"agent"
]
},
{
"uri": "wallet4agent/this_agent/attestations",
"name": "This Agent's attestations",
"description": "All attestations (verifiable credentials) currently held by this Agent in its wallet.",
"mimeType": "application/json",
"role": [
"agent"
]
},
{
"uri": "wallet4agent/agent/{did}/attestations",
"name": "Another Agent's published attestations",
"description": "Template resource. Replace {did} with a specific Agent DID to retrieve its published attestations via Linked VPs.",
"mimeType": "application/json",
"role": [
"agent"
]
},
{
"uri": "wallet4agent/description",
"name": "Wallet4Agent server description",
"description": "Self-description of the Wallet4Agent MCP server and its wallet role in agentic systems.",
"mimeType": "application/json",
"role": [
"agent"
]
}
]
}
],
"version": "0.1.0",
"authors": [
"Wallet4Agent Team"
],
"created_at": "2025-11-24T00:00:00Z",
"domains": [
{
"name": "identity-and-access-management",
"id": "identity-and-access-management"
}
],
"locators": [
{
"type": "mcp_server_manifest",
"url": "https://wallet4agent.com/mcp/info",
"meta": {
"language": "json",
"role": "mcp_server_server_json"
}
},
{
"type": "mcp_server_manifest",
"url": "https://wallet4agent.com/manifest.json",
"meta": {
"language": "json",
"role": "mcp_server_manifest_json"
}
}
]
}