
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
@peac/adapter-x402-fluora
Advanced tools
x402+Fluora MCP marketplace adapter for PEAC protocol.
Maps Fluora MCP tool call events to PaymentEvidence using the PEIP-SVC/mcp-call@1 subject profile.
pnpm add @peac/adapter-x402-fluora
import { fromMcpCallEvent, fromWebhookEvent } from '@peac/adapter-x402-fluora';
// Process an MCP call event
const result = fromMcpCallEvent({
callId: 'call_abc123',
serverId: 'server_xyz',
toolName: 'search_web',
amount: 100, // in minor units (cents)
currency: 'USD',
tenantId: 'tenant_123',
executionMs: 250,
});
if (result.ok) {
console.log(result.value); // PaymentEvidence
} else {
console.error(result.error);
}
// Process marketplace event with splits
const marketplaceResult = fromMcpCallEvent({
callId: 'call_xyz789',
serverId: 'server_abc',
toolName: 'image_gen',
amount: 500,
currency: 'USD',
marketplace: {
sellerId: 'seller_123',
listingId: 'listing_abc',
commission: 15, // 15% commission
},
});
// Result includes aggregator and splits
if (marketplaceResult.ok) {
console.log(marketplaceResult.value.aggregator); // 'fluora'
console.log(marketplaceResult.value.splits); // [{ party: 'seller_123', share: 0.85 }]
}
import { fromMcpCallEvent, type FluoraConfig } from '@peac/adapter-x402-fluora';
const config: FluoraConfig = {
defaultEnv: 'test',
allowedServers: ['server_xyz', 'server_abc'],
allowedTools: ['search_web', 'image_gen'],
};
const result = fromMcpCallEvent(event, config);
See peacprotocol.org for full documentation.
Apache-2.0
PEAC Protocol is an open source project stewarded by Originary and community contributors.
FAQs
Fluora MCP marketplace event normalizer for PEAC protocol
We found that @peac/adapter-x402-fluora demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.