KLAIM MCP server
KLAIM
AI 에이전트를 위한 종량제(Pay-Per-Use) 인간 검증 API
사용자의 문서를 노출하지 않고 사용자를 검증합니다.
KLAIM은 프라이버시 우선 검증 인프라로, 애플리케이션과 AI 에이전트가 만 18세 이상과 같은 사용자에 대한 주장(claim)을 검증할 수 있게 해주며, 사용자의 신원 문서나 원본 PII를 수신하지 않습니다.
🚀 KLAIM이란 무엇인가?
현대 애플리케이션은 사용자가 서비스를 이용할 자격이 있는지 점점 더 많이 검증해야 합니다.
예를 들어:
이 사용자가 만 18세 이상인가?
이 사용자가 특정 국가의 거주자인가?
이 사용자가 유효한 자격 증명을 보유하고 있는가?
이 사용자가 필수 검증을 완료했는가?
이 사용자가 검증된 인간인가?
전통적인 접근 방식은 실제 신원 문서를 수집하는 것입니다.
이는 심각한 프라이버시 문제를 야기합니다.
애플리케이션은 단지 다음만 알면 될 수 있습니다:
Age > 18 = TRUE하지만 대신 다음을 수신합니다:
Name
Date of Birth
Address
Aadhaar/PAN information
Document number
Issuer information
Full documentKLAIM은 이 모델을 바꿉니다.
애플리케이션이 문서를 수신하는 대신, KLAIM은 종량제 인간 검증 API를 제공합니다.
애플리케이션이나 AI 에이전트가 요청합니다:
"Is this person over 18?"KLAIM은 내부적으로 검증을 수행하고 다음을 반환합니다:
{
"verified": true,
"claim": "AGE_OVER_18"
}기본 자격 증명과 개인 정보는 비공개로 유지됩니다.
KLAIM은 검증을 판매하지, 신원 데이터를 판매하지 않습니다.
Related MCP server: AgentStamp
🔗 검증된 Algorand 테스트넷 트랜잭션
KLAIM은 x402 결제 프로토콜을 사용하여 종량제 인간 검증을 가능하게 합니다.
MVP의 경우, 결제는 Algorand 테스트넷의 USDC로 정산됩니다. 다음 트랜잭션은 지불자 지갑 → 제공자 지갑으로의 실제 온체인 전송이며, 각각 0.01 USDC 검증 결제를 나타냅니다.
이는 시뮬레이션된 트랜잭션 ID가 아닙니다. 실제 Algorand 테스트넷 트랜잭션이며, AlgoKit Lora 탐색기를 사용하여 독립적으로 검증할 수 있습니다.
실시간 x402 결제 증거
# | 금액 | 네트워크 | 흐름 | 트랜잭션 |
1 | 0.01 USDC | Algorand Testnet | Payer → Provider | |
2 | 0.01 USDC | Algorand Testnet | Payer → Provider | |
3 | 0.01 USDC | Algorand Testnet | Payer → Provider | |
4 | 0.01 USDC | Algorand Testnet | Payer → Provider |
이것이 입증하는 것
결제 계층은 다음 흐름을 중심으로 설계되었습니다:
AI Agent
│
│ MCP tool call
▼
KLAIM Verification API
│
│ No payment
▼
HTTP 402 Payment Required
│
│ x402 payment requirements
▼
AI Agent / Payer Wallet
│
│ Sign USDC payment
▼
GoPlausible Facilitator
│
│ Verify + settle
▼
Algorand Testnet
│
│ Real USDC transaction
▼
Provider Wallet
│
│ Settlement confirmed
▼
KLAIM Verification
│
▼
Verified Claim
---
# 🎯 Problem
Digital onboarding and AI-agent workflows have three major problems.
### 1. Over-collection of personal information
Applications collect complete identity documents even when they only need one attribute.
### 2. AI agents cannot easily perform trusted identity verification
AI agents can interact with APIs and tools, but identity verification still requires manual document workflows.
### 3. Verification APIs are not naturally machine-payable
Traditional verification providers usually depend on subscriptions, accounts, billing systems, or manual payment workflows.
KLAIM combines:
* **MCP** for AI-agent interoperability
* **x402** for machine-to-machine payments
* **Algorand** for on-chain settlement
* **DID / VC** for identity
* **Zero-Knowledge Proofs** for privacy-preserving verification
into a single verification infrastructure layer.
---
# 💡 The Core Idea
KLAIM separates identity from verification.
### Traditional Verification
```text
User
│
│ Upload document
▼
Application
│
├── Name
├── DOB
├── Address
├── ID Number
└── Full DocumentKLAIM 아키텍처
User
│
│ Credential + Consent
▼
KLAIM
│
│ Verify privately
│
│ ZK Proof
▼
Application / AI Agent
│
└── "AGE > 18 = TRUE"애플리케이션은 답변을 수신하지, 문서를 수신하지 않습니다.
🏗️ 아키텍처
flowchart TD
H[Human User]
DL[DigiLocker / Credential Issuer]
DID[DID + Verifiable Credential]
H -->|Consent| DL
DL -->|Credential| DID
A[AI Agent<br/>Claude / GPT / Custom Agent]
MCP[KLAIM MCP Server]
X402[x402 Payment Middleware]
FAC[GoPlausible Facilitator]
ALGO[Algorand Testnet]
API[Verification API]
PA[Provider Agent<br/>Strands]
ZK[ZK Proof Engine<br/>Midnight-ready]
RESULT[Verified Claim<br/>No Raw PII]
A -->|MCP Tool Call| MCP
MCP --> API
API --> X402
X402 -->|402 Payment Required| A
A -->|USDC Payment| X402
X402 --> FAC
FAC --> ALGO
ALGO -->|Settlement TX| X402
X402 --> API
API --> PA
PA -->|Check DID| DID
PA -->|Check Credential| DID
PA -->|Check Claim| DID
PA --> ZK
ZK --> RESULT
RESULT --> API
API --> MCP
MCP --> A🔄 완전한 검증 흐름
1. 인간 온보딩
사용자가 자신의 신원 자격 증명 소스를 연결합니다.
MVP의 경우, DigiLocker가 의도된 자격 증명 소스입니다.
Human
│
▼
DigiLocker
│
▼
Credential
│
▼
KLAIM DIDKLAIM은 검증 소비자에게 완전한 신원 문서를 노출하는 대신 자격 증명 참조와 파생된 주장(claim)을 저장합니다.
2. AI 에이전트가 MCP를 통해 연결
AI 에이전트는 Model Context Protocol (MCP) 을 통해 KLAIM에 연결합니다.
Claude / GPT / Custom Agent
│
│ MCP
▼
KLAIM MCP ServerMCP 서버는 다음과 같은 검증 도구를 노출합니다:
verify_human_age따라서 에이전트는 다음을 요청할 수 있습니다:
Verify whether DID xyz is over 18.3. 에이전트 인증
모든 검증자(verifier)는 고유한 KLAIM 에이전트 자격 증명을 받습니다.
예:
Agent ID:
agent_xxxxxxxxx
Agent Key:
klm_xxxxxxxxxxxxxxxxx키는 다음과 같습니다:
KLAIM에 의해 생성됨
한 번만 표시됨
저장 전에 해시됨
폐기 가능
교체 가능
4. 검증 요청
MCP 도구가 보호된 검증 API를 호출합니다.
POST /api/v1/verify/age예:
{
"did": "did:klaim:demo-user-001"
}5. x402 결제 경계
검증 API는 x402로 보호됩니다.
유효한 결제가 첨부되지 않은 경우:
HTTP/1.1 402 Payment Requiredx402 계층은 클라이언트에 필요한 결제 요구 사항을 제공합니다.
흐름은 다음과 같아집니다:
AI Agent
│
│ POST /verify/age
▼
KLAIM
│
│ HTTP 402
▼
AI Agent
│
│ Prepare payment
▼
x4026. USDC 결제
검증자 에이전트는 Algorand 테스트넷에서 USDC를 사용하여 검증 비용을 지불합니다.
AI Agent
│
│ USDC
▼
x402
│
▼
GoPlausible Facilitator
│
▼
Algorand Testnet결제는 온체인에서 정산됩니다.
성공적인 검증에는 정산 트랜잭션 ID가 포함됩니다.
예:
{
"payment": {
"txId": "REAL_ALGORAND_TX_ID",
"explorerUrl": "https://lora.algokit.io/testnet/transaction/..."
}
}7. 제공자 에이전트
결제 정산이 성공한 후에만 검증 파이프라인이 실행됩니다.
KLAIM 제공자 에이전트는 Strands Agents SDK를 기반으로 설계되었으며, MVP를 위한 결정적 폴백(fallback)을 포함합니다.
검증 파이프라인은 다음과 같습니다:
check_did
↓
check_credential
↓
check_claim
↓
generate_zk_proof
↓
verify_zk_proof핵심 불변 조건
NO PAYMENT
↓
NO VERIFICATION검증 비즈니스 로직은 결제 경계가 성공하기 전에는 실행되지 않습니다.
8. 자격 증명 검증
제공자 에이전트는 요청된 자격 증명이 사용자의 DID에 존재하는지 확인합니다.
예를 들어:
Requested:
AGE > 18
Available:
DigiLocker Credential
│
└── DOB available필요한 주장(claim)은 내부적으로 파생됩니다.
실제 생년월일(DOB)은 검증자에게 절대 반환되지 않습니다.
9. 영지식(Zero-Knowledge) 검증
KLAIM은 간단한 원칙을 따릅니다:
기본 데이터를 공개하지 않고 주장(claim)을 증명합니다.
다음을 노출하는 대신:
Date of Birth:
12/03/2002KLAIM은 다음에 대한 증명을 생성하는 것을 목표로 합니다:
AGE > 18검증자는 다음만 필요합니다:
verified = true아키텍처에는 Midnight prover와 연결하도록 설계된 ZK 추상화 계층이 포함되어 있습니다.
현재 MVP 아키텍처:
ZK Service
│
├── Local / deterministic engine
│
└── Midnight prover integration point시스템은 로컬 시뮬레이션을 프로덕션 암호화 ZK로 잘못 표현하는 대신 증명 엔진을 명시적으로 식별합니다.
🔐 프라이버시 모델
KLAIM은 최소 공개 아키텍처를 따릅니다.
비공개로 유지되는 데이터
Name
Date of Birth
Address
Aadhaar
PAN
Document Number
Raw Identity Document반환되는 데이터
Verification Result
Claim
Proof Descriptor
Payment Receipt
Algorand Transaction ID예:
{
"verified": true,
"claim": "AGE_OVER_18",
"proof": {
"type": "zk",
"notDisclosed": [
"date_of_birth",
"name",
"address",
"document"
]
}
}🤖 AI 에이전트 아키텍처
KLAIM은 기계 대 기계(machine-to-machine) 검증을 위해 특별히 설계되었습니다.
sequenceDiagram
participant C as Claude / AI Agent
participant M as KLAIM MCP
participant API as Verification API
participant X as x402
participant F as GoPlausible
participant A as Algorand
participant P as Provider Agent
participant Z as ZK Engine
C->>M: verify_human_age(DID)
M->>API: POST /verify/age
API->>X: Check payment
X-->>C: HTTP 402 + requirements
C->>X: Signed USDC payment
X->>F: Verify + settle
F->>A: Algorand Testnet settlement
A-->>F: Transaction ID
F-->>X: Settlement successful
X->>API: Payment verified
API->>P: Start verification
P->>P: Check DID
P->>P: Check credential
P->>P: Evaluate claim
P->>Z: Generate / verify proof
Z-->>P: Proof
P-->>API: Verified claim
API-->>M: Result + TX ID
M-->>C: Verified claim🧩 왜 MCP인가?
MCP가 없다면, 모든 AI 에이전트는 맞춤형 KLAIM 통합이 필요할 것입니다.
Claude → Custom SDK
GPT → Custom SDK
Agent X → Custom SDK
Agent Y → Custom SDKMCP를 사용하면:
Claude
GPT
Custom Agent
│
▼
MCP
│
▼
KLAIMKLAIM은 AI 에이전트가 발견하고 호출할 수 있는 재사용 가능한 검증 기능이 됩니다.
💰 왜 x402인가?
x402는 HTTP 네이티브 기계 결제를 가능하게 합니다.
에이전트는 다음이 필요하지 않습니다:
구독
수동 체크아웃
신용카드 양식
인간 청구 개입
대신:
Request
↓
402
↓
Pay
↓
Retry
↓
Verification이는 검증당 결제(pay-per-verification) API를 위한 자연스러운 모델을 만듭니다.
🌐 왜 Algorand인가?
Algorand는 MVP의 정산 네트워크로 사용되는 이유는 다음과 같은 이점을 제공하기 때문입니다:
빠른 정산
낮은 트랜잭션 비용
USDC 지원
접근 가능한 테스트넷 인프라
독립적으로 검증 가능한 트랜잭션
결제 영수증은 Algorand 테스트넷에서 확인할 수 있습니다.
⭐ USP (Unique Selling Proposition)
KLAIM은 또 다른 신원 대시보드가 아닙니다.
KLAIM은 AI 에이전트를 위한 검증 인프라 계층입니다.
전통적인 신원 검증
Application
│
▼
Identity Provider
│
▼
Upload Document
│
▼
PII Processing
│
▼
VerificationKLAIM
AI Agent
│
▼
MCP
│
▼
x402 Payment
│
▼
KLAIM
│
├── DID / Credential
├── Provider Agent
└── ZK Proof
│
▼
Boolean Verification핵심 차이점
KLAIM은 검증을 판매하지, 신원 데이터를 판매하지 않습니다.
👥 제품 역할
인간 (Human)
인간은 자신의 신원을 통제합니다.
가능한 기능:
DID 생성 / 관리
자격 증명 연결
자격 증명 보기
자격 증명 삭제
검증 권한 관리
검증 기록 보기
인간은 검증 비용을 지불하지 않습니다.
검증자 (Verifier)
검증자는 애플리케이션이나 AI 에이전트를 나타냅니다.
가능한 기능:
AI 에이전트 생성
MCP 자격 증명 생성
에이전트 키 교체 / 폐기
MCP를 Claude에 연결
검증 요청
x402 결제 모니터링
트랜잭션 기록 보기
검증 활동 보기
🔑 에이전트 인증
KLAIM은 검증자 에이전트를 위한 고유 자격 증명을 생성합니다.
예:
Agent ID
agent_xxxxxxxxx
Agent Key
klm_xxxxxxxxxxxxxxxxx원시 키는 한 번만 표시됩니다.
KLAIM은 키의 SHA-256 해시를 저장합니다.
Agent Key
│
▼
SHA-256
│
▼
Stored Hash🏗️ 프로젝트 구조
KLAIM/
│
├── src/
│ ├── routes/
│ │ ├── api/
│ │ │ ├── public/
│ │ │ │ └── mcp.ts
│ │ │ │
│ │ │ └── v1/
│ │ │ ├── verify/
│ │ │ │ └── age.ts
│ │ │ ├── agents.ts
│ │ │ ├── credentials.ts
│ │ │ ├── digilocker.ts
│ │ │ ├── integrations.ts
│ │ │ └── transactions.ts
│ │ │
│ │ ├── human.*
│ │ ├── verifier.*
│ │ └── index.tsx
│ │
│ ├── lib/
│ │ └── klaim/
│ │ ├── server/
│ │ │ ├── mcp.server.ts
│ │ │ ├── x402.server.ts
│ │ │ ├── provider-agent.server.ts
│ │ │ ├── zkp.server.ts
│ │ │ ├── digilocker.server.ts
│ │ │ ├── store.server.ts
│ │ │ └── env.server.ts
│ │ │
│ │ ├── api.ts
│ │ ├── services.ts
│ │ ├── types.ts
│ │ └── mock-data.ts
│ │
│ └── components/
│ ├── app/
│ ├── ui/
│ └── klaim-landing.tsx
│
├── scripts/
│ ├── provision-agent.ts
│ └── test-x402.ts
│
├── tests/
│ └── mcp-x402-flow.test.ts
│
├── .env.example
├── package.json
└── README.md🛠️ 기술 스택
계층 | 기술 |
프론트엔드 | React |
프레임워크 | TanStack Start |
라우팅 | TanStack Router |
스타일링 | Tailwind CSS |
UI | shadcn/ui / Radix |
백엔드 | Nitro / TanStack server routes |
언어 | TypeScript |
런타임 | Bun / Node |
AI 에이전트 | Strands Agents SDK |
AI 통합 | MCP |
결제 | x402 |
파실리테이터 | GoPlausible |
블록체인 | Algorand Testnet |
결제 자산 | USDC |
신원 | DID / VC |
자격 증명 소스 | DigiLocker |
ZK 계층 | Midnight-ready abstraction |
상태 | Repository-based ephemeral store |
🧪 로컬 실행
요구 사항
설치:
Node.js 또는 Bun
Git
Claude Desktop (MCP 테스트용 선택 사항)
저장소를 클론합니다:
git clone <YOUR_GITHUB_REPOSITORY_URL>
cd KLAIM의존성을 설치합니다:
npm install또는:
bun install환경 파일을 생성합니다:
cp .env.example .env개발 서버를 시작합니다:
npm run dev애플리케이션은 다음 주소에서 사용할 수 있습니다:
http://localhost:8080🔌 MCP 테스트
MCP 엔드포인트는 다음과 같습니다:
http://localhost:8080/api/public/mcpMCP 서버는 다음을 지원합니다:
initialize
ping
tools/list
tools/call주요 검증 도구는 다음과 같습니다:
verify_human_age🤖 Claude Desktop 연결
KLAIM 검증자 에이전트를 프로비저닝한 후, Claude Desktop을 다음으로 구성합니다:
{
"mcpServers": {
"klaim": {
"type": "http",
"url": "http://localhost:8080/api/public/mcp",
"headers": {
"X-KLAIM-Agent-Id": "YOUR_AGENT_ID",
"Authorization": "Bearer YOUR_AGENT_KEY"
}
}
}
}Claude Desktop을 다시 시작합니다.
그런 다음 질문합니다:
Use KLAIM to verify whether did:klaim:demo-user-001 is over 18.Claude는 다음을 발견하고 호출해야 합니다:
verify_human_age💳 x402 테스트
필요한 Algorand 테스트넷 지갑을 구성합니다.
전체 흐름은 다음과 같습니다:
POST /api/v1/verify/age
│
▼
HTTP 402
│
▼
Payment Requirements
│
▼
USDC Payment
│
▼
GoPlausible
│
▼
Algorand Testnet
│
▼
Settlement TX
│
▼
Provider Agent
│
▼
Verification
│
▼
HTTP 200독립적인 x402 테스트 클라이언트를 실행합니다:
npm run test:x402성공적인 결과에는 실제 Algorand 테스트넷 트랜잭션 ID가 포함되어야 합니다.
🔎 Algorand 테스트넷 트랜잭션
성공적인 KLAIM x402 트랜잭션은 Lora를 사용하여 독립적으로 검증할 수 있습니다.
예시
아래의 플레이스홀더를 프로젝트에서 생성된 실제 트랜잭션으로 교체합니다:
https://lora.algokit.io/testnet/transaction/YOUR_REAL_TX_ID중요: 위의 트랜잭션 링크는 최종 제출 전에 실제 KLAIM 트랜잭션으로 교체되어야 합니다.
🧪 완전한 데모 흐름
다음 순서로 시스템을 실행합니다.
터미널 1 — KLAIM 시작
npm run dev터미널 2 — 에이전트 프로비저닝
npx tsx scripts/provision-agent.ts생성된 다음을 저장합니다:
KLAIM_AGENT_ID
KLAIM_AGENT_KEY적절한 환경/구성에 저장합니다.
터미널 3 — x402 테스트 실행
npm run test:x402그런 다음 Claude Desktop을 다음에 연결합니다:
/api/public/mcpClaude에게 요청합니다:
Verify whether the user is over 18 using KLAIM.예상 아키텍처:
Claude
↓
MCP
↓
KLAIM
↓
HTTP 402
↓
USDC Payment
↓
GoPlausible
↓
Algorand Testnet
↓
Provider Agent
↓
Credential Verification
↓
ZK Proof
↓
Verified Claim
↓
Claude🔐 보안 및 프라이버시
KLAIM은 데이터 최소화를 중심으로 설계되었습니다.
KLAIM은 다음을 노출하지 않습니다:
❌ Aadhaar number
❌ PAN number
❌ Date of Birth
❌ Address
❌ Raw identity document
❌ Private wallet keys
❌ Agent private credentialsKLAIM은 다음을 노출합니다:
✓ Verification result
✓ Claim
✓ Proof metadata
✓ Payment receipt
✓ Algorand transaction ID⚠️ MVP 상태
KLAIM은 현재 MVP / 해커톤 구현입니다.
아키텍처는 의도적으로 프로덕션 통합을 서비스 인터페이스 뒤에 분리합니다.
구현됨
인간 / 검증자 역할 분리
DID 중심 신원 모델
자격 증명 관리
MCP 서버
MCP 인증
MCP 도구 발견
검증 API
x402 결제 경계
Algorand 테스트넷 정산 흐름
GoPlausible 파실리테이터 통합
제공자 에이전트 아키텍처
Strands 통합 지점
ZK 추상화
DigiLocker 통합 인터페이스
에이전트 프로비저닝
에이전트 키 교체 / 폐기
검증 기록
트랜잭션 기록
통합 의존적
DigiLocker production credentials
↓
Official DigiLocker OAuth / issuer integration
Midnight prover
↓
MIDNIGHT_PROVER_URL
Strands / Bedrock
↓
AWS credentials + model configuration이러한 통합은 핵심 MCP 및 x402 아키텍처를 변경하지 않고 활성화할 수 있습니다.
🚀 로드맵
1단계 — MVP
✓ MCP
✓ x402
✓ Algorand Testnet
✓ USDC settlement
✓ Agent authentication
✓ Credential abstraction
✓ Provider Agent
✓ Verification API
✓ ZK abstraction2단계 — 프로덕션 신원
DigiLocker production integration
↓
Verifiable Credentials
↓
DID interoperability3단계 — 프로덕션 ZK
Midnight prover
↓
Cryptographically verifiable claims4단계 — 에이전트 경제
KLAIM은 자율 에이전트를 위한 범용 검증 마켓플레이스가 될 수 있습니다.
잠재적 API:
verify_age
verify_residency
verify_credential
verify_student_status
verify_business_registration
verify_human각 검증은 기계가 결제할 수 있는 API가 됩니다.
🌍 사용 사례
연령 제한 애플리케이션
AI Agent
↓
KLAIM
↓
AGE > 18생년월일(DOB)은 노출되지 않습니다.
금융 온보딩
AI Agent
↓
KLAIM
↓
Credential Valid애플리케이션은 완전한 신분증명서를 요구하지 않습니다.
교육
AI Agent
↓
KLAIM
↓
Student Credential = TRUE인간 전용 서비스
AI Agent
↓
KLAIM
↓
Human Verification🏆 왜 KLAIM인가?
대부분의 신원 확인 시스템은 이렇게 묻습니다:
"이 사람은 누구인가?"
KLAIM은 이렇게 묻습니다:
"다른 모든 것을 보지 않고 내가 알아야 할 단 한 가지를 검증할 수 있는가?"
KLAIM은 다음을 결합합니다:
Privacy-Preserving Verification
+
AI Agent Interoperability
+
Pay-Per-Use Payments
+
Zero-Knowledge Architecture
+
On-Chain Settlement단일 검증 API로 제공합니다.
📜 라이선스
MIT
KLAIM
에이전트 경제를 위한 인간 검증 인프라
문서를 보내지 마세요.
주장을 증명하세요.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityFmaintenanceEnables AI agents to autonomously request services from other specialized agents and compensate them via x402 micropayments. Demonstrates a Machine-to-Machine economy using A2A protocol for agent communication, MCP for context management, and blockchain-based payments on Base network.331MIT
- AlicenseAqualityDmaintenanceTrust intelligence MCP server for AI agents. 19 tools for identity stamps, reputation scoring (0-100), agent registry, forensic audit trails, ERC-8004 bridge, and A2A passports via x402 USDC micropayments.191Apache 2.0
- AlicenseAqualityCmaintenanceZero-knowledge proof generation MCP server. AI agents can prove identity claims (Coinbase KYC, Country, Google OIDC, Google Workspace, Microsoft 365) without revealing personal data. Runs in AWS Nitro Enclave TEE with x402 USDC payments.6MIT
- FlicenseNot gradedqualityCmaintenanceEnables AI agents to discover, call, and pay for existing HTTP APIs over MCP with x402 paywalls, non-custodial settlement, and no code changes to the backend.
Related MCP Connectors
Agent x402 Paywall MCP — Coinbase HTTP 402 protocol + on-chain settlement. Agents pay per-call
Agent Commerce Protocol MCP — bridges Stripe ACP + Google AP2 + Coinbase x402 for agent payments
Evidence-backed x402 web verification for AI agents, with auditable decisions for every condition.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Omicron6/Klaim'
If you have feedback or need assistance with the MCP directory API, please join our Discord server