-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathregistry.json
More file actions
1931 lines (1931 loc) · 77.2 KB
/
registry.json
File metadata and controls
1931 lines (1931 loc) · 77.2 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
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"generated_at": "2026-04-23T10:17:27.526Z",
"total_projects": 305,
"categories": [
{
"name": "Protocol and Specs",
"subcategories": [
{
"name": "General",
"projects": [
{
"name": "mpp-specs",
"url": "https://github.com/tempoxyz/mpp-specs",
"description": "Official MPP specification using an RFC-style Payment HTTP auth scheme",
"type": "github"
},
{
"name": "mpp",
"url": "https://github.com/tempoxyz/mpp",
"description": "Protocol documentation site and service registry",
"type": "github"
},
{
"name": "IETF Draft",
"url": "https://datatracker.ietf.org/doc/draft-ryan-httpauth-payment/",
"description": "The `draft-ryan-httpauth-payment` internet-draft by Brendan Ryan (Tempo) and Jeff Weinstein (Stripe)",
"type": "external"
}
]
}
]
},
{
"name": "SDKs",
"subcategories": [
{
"name": "Official",
"projects": [
{
"name": "mppx",
"url": "https://github.com/wevm/mppx",
"description": "TypeScript SDK with server, client, and proxy support. Includes Hono, Express, and Next.js middleware. Also works as a zero-config reverse proxy for payment gating",
"type": "github"
},
{
"name": "pympp",
"url": "https://github.com/tempoxyz/pympp",
"description": "Python SDK for MPP",
"type": "github"
},
{
"name": "mpp-rs",
"url": "https://github.com/tempoxyz/mpp-rs",
"description": "Rust SDK for MPP",
"type": "github"
},
{
"name": "tempo-go",
"url": "https://github.com/tempoxyz/tempo-go",
"description": "Go SDK for Tempo Blockchain with MPP client support",
"type": "github"
},
{
"name": "tempo-ts",
"url": "https://github.com/tempoxyz/tempo-ts",
"description": "TypeScript tooling for Tempo, used internally by mppx",
"type": "github"
}
]
},
{
"name": "Community",
"projects": [
{
"name": "mppx-rb",
"url": "https://github.com/cjavdev/mppx-rb",
"description": "Ruby SDK for MPP",
"type": "github"
},
{
"name": "mpp-go",
"url": "https://github.com/deszhou/mpp-go",
"description": "Community Go SDK for MPP",
"type": "github"
},
{
"name": "fastapi-mpp",
"url": "https://github.com/SylvainCostes/fastapi-mpp",
"description": "FastAPI middleware for Python",
"type": "github"
},
{
"name": "ZenHive/mpp",
"url": "https://github.com/ZenHive/mpp",
"description": "Elixir implementation of MPP",
"type": "github"
},
{
"name": "dotnet-sdk-mpp",
"url": "https://github.com/evenuss/dotnet-sdk-mpp",
"description": ".NET SDK for MPP",
"type": "github"
},
{
"name": "dart-tempo",
"url": "https://github.com/Immadominion/dart-tempo",
"description": "Dart SDK for Tempo",
"type": "github"
}
]
}
]
},
{
"name": "Payment Methods",
"subcategories": [
{
"name": "Official Tempo and Stripe",
"projects": [
{
"name": "mpp-card",
"url": "https://www.npmjs.com/package/mpp-card",
"description": "Fiat card payments for MPP. Tempo stablecoins and Stripe card support are built into mppx",
"type": "npm"
}
]
},
{
"name": "Solana",
"projects": [
{
"name": "@solana/mpp",
"url": "https://github.com/solana-foundation/mpp-sdk",
"description": "Official Solana Foundation SDK for MPP",
"type": "github"
},
{
"name": "@dexterai/mpp",
"url": "https://github.com/Dexter-DAO/dexter-mpp",
"description": "Managed settlement with no Blockchain infrastructure needed",
"type": "github"
},
{
"name": "mpp-solana",
"url": "https://github.com/starc007/mpp-solana",
"description": "SPL token support for MPP on Solana",
"type": "github"
},
{
"name": "mppx-solana",
"url": "https://github.com/nitishxyz/mppx-solana",
"description": "Mppx plugin for Solana",
"type": "github"
},
{
"name": "mpp-spl",
"url": "https://github.com/nullxnothing/mpp-spl",
"description": "SPL token and pump.fun payment layer with token registry and Jupiter pricing",
"type": "github"
},
{
"name": "solana-mpp",
"url": "https://github.com/sendaifun/solana-mpp",
"description": "Solana extension for MPP",
"type": "github"
}
]
},
{
"name": "Lightning",
"projects": [
{
"name": "@buildonspark/lightning-mpp-sdk",
"url": "https://github.com/buildonspark/lightning-mpp-sdk",
"description": "Lightning payments via Spark",
"type": "github"
},
{
"name": "@ambosstech/lightning-mpp-sdk",
"url": "https://github.com/AmbossTech/lightning-mpp-sdk",
"description": "Lightning with LND and NWC adapters",
"type": "github"
},
{
"name": "@axobot/mppx",
"url": "https://github.com/zbdpay/axobot-mppx",
"description": "Lightning-native MPP with pluggable adapters",
"type": "github"
}
]
},
{
"name": "Other Chains",
"projects": [
{
"name": "@t2000/mpp-sui",
"url": "https://github.com/mission69b/t2000",
"description": "Sui USDC payments",
"type": "github"
},
{
"name": "stellar-mpp-sdk",
"url": "https://github.com/stellar-experimental/stellar-mpp-sdk",
"description": "Stellar payment method for MPP",
"type": "github"
},
{
"name": "xrpl-mpp-sdk",
"url": "https://github.com/krkmu/xrpl-mpp-sdk",
"description": "XRP Ledger payment method for MPP",
"type": "github"
},
{
"name": "mpp-abstract",
"url": "https://github.com/Abstract-Foundation/mpp-abstract",
"description": "Abstract chain with custom intents and escrow",
"type": "github"
},
{
"name": "mpp-movement",
"url": "https://github.com/MoveIndustries/mpp-movement",
"description": "Movement Network payment method",
"type": "github"
},
{
"name": "mpp-ton",
"url": "https://github.com/TesseraeVentures/mpp-ton",
"description": "TON payment method for MPP",
"type": "github"
},
{
"name": "algorand-mpp-sdk",
"url": "https://github.com/GoPlausible/algorand-mpp-sdk",
"description": "Algorand payment method for MPP",
"type": "github"
},
{
"name": "mpp-avalanche",
"url": "https://github.com/ashucoder9/mpp-avalanche",
"description": "Avalanche with streaming payment channels",
"type": "github"
},
{
"name": "mppx-multiversx",
"url": "https://github.com/sasurobert/mppx-multiversx",
"description": "MultiversX payment method for MPP",
"type": "github"
},
{
"name": "mega-mpp-sdk",
"url": "https://github.com/ifavo/mega-mpp-sdk",
"description": "MegaETH payment method for MPP",
"type": "github"
},
{
"name": "skalenetwork/mpp-sdk",
"url": "https://github.com/skalenetwork/mpp-sdk",
"description": "SKALE payment method for MPP",
"type": "github"
},
{
"name": "zimppy",
"url": "https://github.com/betterclever/zimppy",
"description": "Zcash private payments for AI agents",
"type": "github"
},
{
"name": "@0xsquid/mpp",
"url": "https://www.npmjs.com/package/@0xsquid/mpp",
"description": "Cross-chain payments via Squid Router",
"type": "npm"
},
{
"name": "mppx-stableyard",
"url": "https://github.com/stableyardfi/mppx-stableyard",
"description": "Any chain in, any chain out, with fiat settlement",
"type": "github"
},
{
"name": "@monad-crypto/mpp",
"url": "https://github.com/monad-crypto/mpp",
"description": "Monad payment method for MPP",
"type": "github"
},
{
"name": "@caypo/mpp-canton",
"url": "https://www.npmjs.com/package/@caypo/mpp-canton",
"description": "Canton Network USDCx payments",
"type": "npm"
},
{
"name": "xrpl-mpp-stack",
"url": "https://github.com/lgcarrier/xrpl-mpp-stack",
"description": "XRP Ledger Python implementation with charge and session support",
"type": "github"
},
{
"name": "@raycashxyz/mpp",
"url": "https://www.npmjs.com/package/@raycashxyz/mpp",
"description": "Private payments via Raycash",
"type": "npm"
},
{
"name": "@solobank/mpp-solana",
"url": "https://www.npmjs.com/package/@solobank/mpp-solana",
"description": "Solana USDC payment method for MPP",
"type": "npm"
},
{
"name": "@paytoll/sdk",
"url": "https://github.com/paytoll/sdk",
"description": "Developer toolkit for accepting machine payments on Solana via MPP",
"type": "github"
},
{
"name": "Alchemy",
"url": "https://agents.alchemy.com/",
"description": "Blockchain data APIs including Core RPC APIs, Prices API, Portfolio API, and NFT API across 100+ chains",
"type": "external"
},
{
"name": "Allium",
"url": "https://allium.so",
"description": "System of record for onchain finance. Real-time Blockchain data: token prices, wallet balances, transactions, PnL, and SQL explorer",
"type": "external"
},
{
"name": "Codex",
"url": "https://codex.io",
"description": "Comprehensive onchain data API for tokens and prediction markets. Real-time prices, charts, trades, and wallet analytics across 80+ networks via GraphQL",
"type": "external"
},
{
"name": "QuickNode",
"url": "https://quicknode.com/",
"description": "Core Node API for 80+ Blockchains and 140+ networks",
"type": "external"
},
{
"name": "Tempo RPC",
"url": "https://tempo.xyz",
"description": "Tempo Blockchain JSON-RPC access (mainnet and testnet)",
"type": "external"
}
]
}
]
},
{
"name": "Framework Integrations",
"subcategories": [
{
"name": "General",
"projects": [
{
"name": "@agentcash/router",
"url": "https://www.npmjs.com/package/@agentcash/router",
"description": "Next.js App Router with MPP, x402, and API key auth",
"type": "npm"
},
{
"name": "mpp-aws",
"url": "https://github.com/i-norden/mpp-aws",
"description": "AWS infrastructure integration for MPP",
"type": "github"
}
]
}
]
},
{
"name": "Infrastructure and Proxies",
"subcategories": [
{
"name": "General",
"projects": [
{
"name": "mppx-proxy",
"url": "https://github.com/starc007/mppx-proxy",
"description": "Standalone reverse proxy for MPP",
"type": "github"
},
{
"name": "mpp-proxy-cf",
"url": "https://github.com/tempoxyz/mpp-proxy-cf",
"description": "Cloudflare Workers MPP proxy from the Tempo team",
"type": "github"
},
{
"name": "openvps",
"url": "https://github.com/kartojal/openvps",
"description": "MPP-powered VPS hosting where AI agents pay for compute",
"type": "github"
},
{
"name": "github-mpp-proxy",
"url": "https://github.com/aLjTap/github-mpp-proxy",
"description": "GitHub REST API proxy with MPP payments",
"type": "github"
},
{
"name": "mppscan.com",
"url": "https://mppscan.com",
"description": "Transaction explorer and service discovery for MPP",
"type": "external"
},
{
"name": "mpp-cloudflare-dynamic-edge-agent",
"url": "https://github.com/sam00101011/mpp-cloudflare-dynamic-edge-agent",
"description": "Dynamic edge agent on Cloudflare Workers",
"type": "github"
},
{
"name": "tollbooth",
"url": "https://github.com/abhay/tollbooth",
"description": "Solana payment gateway with MPP, gasless fee relayer, and axum middleware",
"type": "github"
},
{
"name": "Code Storage",
"url": "https://code.storage",
"description": "Paid Git repository creation with authenticated clone URLs",
"type": "external"
},
{
"name": "asgcard-public",
"url": "https://github.com/ASGCompute/asgcard-public",
"description": "Virtual MasterCards for AI agents with USDC payments via x402 on Stellar",
"type": "github"
},
{
"name": "Object Storage",
"url": "https://objectstorage.dev",
"description": "S3/R2-compatible object storage with dynamic per-size pricing",
"type": "external"
},
{
"name": "StableUpload",
"url": "https://stableupload.dev",
"description": "Pay-per-upload file hosting and static site hosting with custom domains — 6 month TTL",
"type": "external"
}
]
}
]
},
{
"name": "Agent Tools and CLIs",
"subcategories": [
{
"name": "General",
"projects": [
{
"name": "incur",
"url": "https://github.com/wevm/incur",
"description": "CLI framework for agents and humans by wevm",
"type": "github"
},
{
"name": "incur-rs",
"url": "https://github.com/tempoxyz/incur-rs",
"description": "Rust port of incur",
"type": "github"
},
{
"name": "agent-skills",
"url": "https://github.com/tempoxyz/agent-skills",
"description": "Official Tempo agent skill pack",
"type": "github"
},
{
"name": "wallet",
"url": "https://github.com/tempoxyz/wallet",
"description": "CLI wallet and HTTP client with built-in MPP support",
"type": "github"
},
{
"name": "@kakedashi/paylog",
"url": "https://www.npmjs.com/package/@kakedashi/paylog",
"description": "CLI to view MPP spending history",
"type": "npm"
},
{
"name": "@heyamiko/amiko-cli",
"url": "https://www.npmjs.com/package/@heyamiko/amiko-cli",
"description": "CLI for the Amiko AI Agent Marketplace",
"type": "npm"
},
{
"name": "human402",
"url": "https://github.com/joohhnnn/human402",
"description": "Human-facing 402 payment page for MPP",
"type": "github"
},
{
"name": "MPP-Inspector",
"url": "https://github.com/amgb20/MPP-Inspector",
"description": "CLI and web dashboard for debugging MPP flows",
"type": "github"
},
{
"name": "mcp-protocol-tester",
"url": "https://github.com/whiteknightonhorse/mcp-protocol-tester",
"description": "Universal test suite for MCP servers with dual-rail payment testing",
"type": "github"
},
{
"name": "openprice",
"url": "https://github.com/tldr-wknd/openprice",
"description": "Price discovery middleware for the agent economy",
"type": "github"
},
{
"name": "x402-proxy",
"url": "https://github.com/cascade-protocol/x402-proxy",
"description": "Auto-pays HTTP 402 responses on Base, Solana, and Tempo. Includes MCP stdio proxy for AI agents and pay-per-token streaming via MPP sessions",
"type": "github"
},
{
"name": "knox",
"url": "https://github.com/stephancill/knox",
"description": "Moddable payments CLI for x402 and MPP",
"type": "github"
},
{
"name": "@raycashxyz/mpp-pay",
"url": "https://github.com/raycashxyz/mpp-pay",
"description": "CLI for making paid API requests via MPP",
"type": "github"
},
{
"name": "satring",
"url": "https://github.com/toadlyBroodle/satring",
"description": "Service directory for the agent economy with L402 and x402 discovery, ratings, and Lightning payments",
"type": "github"
},
{
"name": "regent-cli",
"url": "https://github.com/regent-ai/regent-cli",
"description": "CLI for Regent agents with ERC-8004, x402, MPP, ENS, WorldID, and XMTP support",
"type": "github"
},
{
"name": "autolaunch",
"url": "https://github.com/regent-ai/autolaunch",
"description": "Uniswap CCA auctions via CLI for agents with revenue splits from x402 and MPP",
"type": "github"
},
{
"name": "402Router",
"url": "https://github.com/obulai/402Router",
"description": "Open-source client-side model router for x402 and MPP providers",
"type": "github"
},
{
"name": "APIbase",
"url": "https://github.com/whiteknightonhorse/APIbase",
"description": "Universal MCP gateway for AI agents with 413 tools across 123 providers. Pay per call with x402 and MPP",
"type": "github"
},
{
"name": "bitrouter",
"url": "https://github.com/bitrouter/bitrouter",
"description": "Agentic proxy for modern agent runtimes with smart routing across LLMs, tools, and agents",
"type": "github"
},
{
"name": "agentic-wallet",
"url": "https://github.com/smukh/agentic-wallet",
"description": "Unified CLI for AI agent wallets across Coinbase, Tempo, OpenWallet, and Crossmint. Interactive and non-interactive modes with JSON output and multi-chain support",
"type": "github"
},
{
"name": "Parallel",
"url": "https://parallel.ai",
"description": "Web search, page extraction, and multi-hop web research",
"type": "external"
}
]
}
]
},
{
"name": "Middleware and Extensions",
"subcategories": [
{
"name": "General",
"projects": [
{
"name": "mppx-rate-limit",
"url": "https://github.com/leigents/mppx-rate-limit",
"description": "Rate limiting for MPP routes",
"type": "github"
},
{
"name": "mppx-token-gate",
"url": "https://github.com/douglasborthwick-crypto/mppx-token-gate",
"description": "Token-gate routes via signed wallet attestations across 32 chains",
"type": "github"
},
{
"name": "agenttax-mppx",
"url": "https://github.com/AgentTax/agenttax-mppx",
"description": "Tax middleware for sales tax and capital gains on AI agent transactions",
"type": "github"
},
{
"name": "mpp-integration",
"url": "https://github.com/observer-protocol/mpp-integration",
"description": "Trust and reputation layer for MPP sellers",
"type": "github"
},
{
"name": "@moltrust/mpp",
"url": "https://www.npmjs.com/package/@moltrust/mpp",
"description": "W3C DID-based trust score middleware for MPP. Pre-transaction agent verification via MolTrust trust scores. Works with mppx",
"type": "npm"
},
{
"name": "sardis-guard-mpp",
"url": "https://github.com/EfeDurmaz16/sardis-guard-mpp",
"description": "Financial intelligence for AI agent payments",
"type": "github"
},
{
"name": "costillery",
"url": "https://github.com/wytcab/costillery",
"description": "Receipt intelligence for AI agents, auto-capturing MPP and x402 receipts",
"type": "github"
},
{
"name": "agentlair-mpp-identity-bridge",
"url": "https://github.com/piiiico/agentlair-mpp-identity-bridge",
"description": "Verifiable agent identity via DIDs and Ed25519 attestations",
"type": "github"
},
{
"name": "@clearagent/mpp",
"url": "https://www.npmjs.com/package/@clearagent/mpp",
"description": "Know Your Agent compliance screening for MPP",
"type": "npm"
},
{
"name": "agent-verifier",
"url": "https://github.com/goodmeta/agent-verifier",
"description": "Agent spending verification with budget caps and cross-agent tracking",
"type": "github"
},
{
"name": "secure-exec",
"url": "https://github.com/achilliesbot/secure-exec",
"description": "Sandboxed tool execution oracle with IAM-gated dry-run and x402/MPP payment gate",
"type": "github"
},
{
"name": "mpay",
"url": "https://www.npmjs.com/package/mpay",
"description": "TypeScript SDK for the Machine Payments Protocol",
"type": "npm"
},
{
"name": "clawmpp",
"url": "https://www.npmjs.com/package/clawmpp",
"description": "MPP integration for OpenClaw providing one wallet for every AI service",
"type": "npm"
},
{
"name": "x402",
"url": "https://github.com/coinbase/x402",
"description": "Coinbase x402 payment protocol with EVM, SVM, and fetch implementations",
"type": "github"
},
{
"name": "twitsh",
"url": "https://github.com/etherlect/twitsh",
"description": "X/Twitter data CLI with x402 micropayment handling",
"type": "github"
},
{
"name": "@b3dotfun/anyspend-x402",
"url": "https://github.com/b3-fun/anyspend-x402",
"description": "AnySpend x402 implementation with multi-chain support",
"type": "github"
},
{
"name": "@relai-fi/x402",
"url": "https://github.com/web3luka/relai-sdk",
"description": "Unified x402 payment SDK for Solana, Base, Avalanche, SKALE, Polygon, and Ethereum",
"type": "github"
},
{
"name": "x402-stacks",
"url": "https://github.com/tony1908/x402Stacks",
"description": "x402 payment protocol on Stacks Blockchain",
"type": "github"
},
{
"name": "@b3dotfun/anyspend-x402-fetch",
"url": "https://github.com/b3-fun/anyspend-x402-fetch",
"description": "AnySpend x402 fetch client with multi-token support",
"type": "github"
},
{
"name": "mppfinance-sdk",
"url": "https://github.com/mppfinance/mppfinance-sdk",
"description": "Virtual Visa cards for AI agents powered by MPP",
"type": "github"
},
{
"name": "@atxp/mpp",
"url": "https://github.com/atxp-dev/sdk",
"description": "ATXP MPP support for agent identity and delegation",
"type": "github"
},
{
"name": "@grantex/mpp",
"url": "https://github.com/mishrasanjeev/grantex",
"description": "Grantex agent identity and delegation for MPP",
"type": "github"
},
{
"name": "@stellar/mpp",
"url": "https://github.com/stellar/stellar-mpp-sdk",
"description": "Stellar Blockchain payment method for MPP",
"type": "github"
},
{
"name": "Agent_Attestation",
"url": "https://github.com/KCorstor/Agent_Attestation",
"description": "Agent attestation API with connectivity, income verification, and ID data for x402, MPP, and KYA stacks",
"type": "github"
},
{
"name": "trust-layer",
"url": "https://github.com/ark-forge/trust-layer",
"description": "Certifying proxy for agent-to-agent transactions with SHA-256 proof chain and Ed25519 signatures",
"type": "github"
},
{
"name": "cipherpay-x402",
"url": "https://github.com/atmospherelabs-dev/cipherpay-x402",
"description": "CipherPay x402 payment integration",
"type": "github"
},
{
"name": "x402-MPP-shielded-",
"url": "https://github.com/amiabix/x402-MPP-shielded-",
"description": "Shielded payment integration for x402 and MPP",
"type": "github"
},
{
"name": "402-crawler-spec",
"url": "https://github.com/taskhawk-systems/402-crawler-spec",
"description": "Reference crawler and discovery schemas for L402, x402, and MPP paid API endpoints",
"type": "github"
},
{
"name": "@x402/evm",
"url": "https://github.com/x402-foundation/x402",
"description": "X402 Payment Protocol EVM Implementation",
"type": "github"
},
{
"name": "@suimpp/mpp",
"url": "https://github.com/mission69b/suimpp",
"description": "Sui USDC payment method for the Machine Payments Protocol (MPP)",
"type": "github"
},
{
"name": "auditor-mcp",
"url": "https://github.com/xaviersharwin10/soroban_node_0",
"description": "MCP server that audits Soroban smart contracts via autonomous x402 / Stripe MPP payments on Stellar Testnet",
"type": "github"
}
]
}
]
},
{
"name": "Services",
"subcategories": [
{
"name": "First-Party",
"projects": [
{
"name": "APIMesh",
"url": "https://github.com/mbeato/conway",
"description": "87 pay-per-call APIs for AI agents (web-checker, http-status-checker, favicon-checker, microservice-health-check, status-code-checker, regex-builder, +81 more). Supports x402 + MPP",
"type": "github"
},
{
"name": "paid-image-api",
"url": "https://github.com/cepuyut/paid-image-api",
"description": "Pay-per-request AI image generation on Tempo",
"type": "github"
},
{
"name": "Dtelecom",
"url": "https://github.com/dteIecom/Dtelecom",
"description": "Real-time voice, video, and voice AI with pay-per-use via x402/MPP",
"type": "github"
},
{
"name": "Surf",
"url": "https://surf.cascade.fyi",
"description": "Pay-per-use Twitter, Reddit, web, and inference APIs for AI agents with dual-protocol support on Base, Solana, and Tempo",
"type": "external"
},
{
"name": "AgentMail",
"url": "https://agentmail.to",
"description": "Email inboxes for AI agents",
"type": "external"
},
{
"name": "Browserbase",
"url": "https://browserbase.com",
"description": "Headless browser sessions, web search, and page fetching for AI agents",
"type": "external"
},
{
"name": "Dune",
"url": "https://dune.com",
"description": "Query raw transaction data, decoded smart contract events, stablecoin flows, and protocol analytics",
"type": "external"
},
{
"name": "Judge0",
"url": "https://judge0.com",
"description": "Online code execution in 60+ programming languages with sandboxed isolation",
"type": "external"
},
{
"name": "Modal",
"url": "https://modal.com",
"description": "Serverless GPU compute for sandboxed code execution and AI/ML workloads",
"type": "external"
},
{
"name": "ScreenshotOne",
"url": "https://screenshotone.com",
"description": "Website screenshot API for capturing any URL as PNG, JPEG, WebP, or PDF",
"type": "external"
},
{
"name": "Billboard",
"url": "https://x.com/MPPBillboard",
"description": "Post to @MPPBillboard on X with dynamic pricing that doubles per post",
"type": "external"
},
{
"name": "Clado",
"url": "https://clado.ai",
"description": "People search, LinkedIn enrichment, and deep research for lead generation",
"type": "external"
}
]
},
{
"name": "Proxied via Tempo",
"projects": [
{
"name": "[Anthropic](https://anthropic.com)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[OpenAI](https://openai.com)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[Google Gemini](https://ai.google.dev)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[Mistral AI](https://mistral.ai)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[Groq](https://groq.com)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[DeepSeek](https://deepseek.com)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[Perplexity](https://perplexity.ai)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[OpenRouter](https://openrouter.ai)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[Replicate](https://replicate.com)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[fal.ai](https://fal.ai)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[Stability AI](https://stability.ai)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[Suno](https://sunoapi.org)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[Grok](https://x.ai)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[Exa](https://exa.ai)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[Firecrawl](https://firecrawl.dev)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[Tavily](https://tavily.com)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[Brave Search](https://brave.com/search)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[Wolfram|Alpha](https://www.wolframalpha.com)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[SerpApi](https://serpapi.com)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[Diffbot](https://www.diffbot.com)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[EDGAR](https://www.sec.gov/developer)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[CoinGecko](https://www.coingecko.com)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[Alpha Vantage](https://www.alphavantage.co)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[Deepgram](https://deepgram.com)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[DeepL](https://www.deepl.com)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[Mapbox](https://www.mapbox.com)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[Mathpix](https://mathpix.com)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"
},
{
"name": "[IPinfo](https://ipinfo.io)",
"description": "Proxied service available via mpp.tempo.xyz",
"type": "proxied"