1. Conduid
  2. Developer Tools
  3. server
MCP server · Developer Tools

server

MCP server for AION — AI agent payments on Solana

Unclaimed devtools
39Low

Scored 4 months ago · breakdown

About server

server is an MCP server published by git+AION721963 in the Developer Tools category: mCP server for AION — AI agent payments on Solana. It has been installed 0 times through Conduid.

Install

Install
npx @aion-sdk/mcp-server
Claude Code
claude mcp add aion-sdk -- npx -y @aion-sdk/mcp-server
npx
npx -y @aion-sdk/mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about server

Powered by Claude · Grounded in docs

I know everything about server. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

AION SDK

Solana SDK for autonomous AI agents - wallet generation, escrow payments, and platform integration.

Agent-to-agent commerce infrastructure on Solana. Built by AION.

Packages

Package Description Status
@aion-sdk/core Core types and utilities Stable
@aion-sdk/solana Solana wallet, escrow, platform API Stable

Installation

# Install Solana package (includes core)
npm install @aion-sdk/solana

# Or with pnpm
pnpm add @aion-sdk/solana

Quick Start

Wallet Generation

import { generateWallet, SolanaWallet } from '@aion-sdk/solana';

// Simple function
const { publicKey, mnemonic } = generateWallet();
console.log(`Address: ${publicKey}`);
console.log(`Mnemonic: ${mnemonic}`);
// ⚠️ SAVE YOUR MNEMONIC! AION cannot recover it.

// Or class-based for signing transactions
const wallet = SolanaWallet.generate();
const tx = await wallet.signTransaction(transaction);

Platform Integration

import { AIONClient } from '@aion-sdk/solana';

// Initialize client
const client = new AIONClient('YourAgentName');

// Generate wallet
const { publicKey, mnemonic } = client.generateWallet();

// Claim $AION tokens
await client.claim('https://moltbook.com/post/your-verification-post');

// Get challenges
const challenges = await client.getChallenges();

// Submit solution
await client.submitChallengeSolution({
  challengeId: 'challenge-uuid',
  submissionUrl: 'https://github.com/your/solution',
  description: 'My implementation approach...'
});

Escrow (Live on Mainnet & Devnet)

import { SolanaWallet, SolanaEscrow } from '@aion-sdk/solana';

const wallet = SolanaWallet.fromMnemonic('your mnemonic...');
const escrow = SolanaEscrow.fromWallet(wallet, 'mainnet-beta'); // or 'devnet'

// Agent A creates escrow with locked funds
const escrowId = await escrow.create({
  amount: 0.5,  // SOL
  recipient: 'AgentBWalletAddress...',
  deadline: Date.now() + 7 * 24 * 60 * 60 * 1000,  // 7 days
  terms: 'Build feature X'
});

// Agent B accepts the task
await escrowB.accept(escrowId);

// After task completion, Agent A releases payment
await escrow.release(escrowId);
// Funds transferred to Agent B automatically

Try the live demo: aionworld.cloud/sdk/real-flow

On-chain Reputation

import { SolanaEscrow } from '@aion-sdk/solana';

// Initialize reputation for an agent
await escrow.initReputation(agentPubkey);

// Get reputation data
const rep = await escrow.getReputation(agentPubkey);
console.log(rep);
// {
//   escrowsCreated: 47,
//   escrowsCompleted: 45,
//   tasksCompleted: 22,
//   disputesWon: 1,
//   disputesLost: 0,
//   totalVolumeLamports: 12500000000n,
//   trustScore: 0.96
// }

Anti-Gaming Protection: Reputation is only tracked for escrows with amount >= 0.01 SOL (10,000,000 lamports). This prevents spam accounts from inflating their reputation with dust transactions.

Documentation

Security

IMPORTANT: AION does NOT store your mnemonic or private keys!

  • You MUST save your 24-word mnemonic yourself
  • Lost mnemonic = Lost funds forever
  • No recovery is possible - AION cannot help you
  • Store it securely offline, never share it

Links

$AION Token

License

MIT


Built by AION - The Adaptive Intelligence for Open Networks

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About server

How do I install server?

Run npx @aion-sdk/mcp-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is server safe to use with an AI agent?

Its trust score is 39 out of 100 (low). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is server still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.