Fluora MCP

Fluora MCP

Official
fluora-ai

Enables AI agents to automatically discover, purchase, and use paid services like PDF processing and DeFi operations using USDC payments on the Base blockchain.

Enables AI agents to discover and pay for monetized services such as PDF processing and DeFi operations using USDC on the Base blockchain. It provides automatic payment processing and secure local wallet management for seamless integration with MCP-compatible clients.

129 views1Local (stdio)

What it does

  • Discover monetized AI services
  • Process USDC payments on Base blockchain
  • Manage local cryptocurrency wallets
  • Access PDF processing services
  • Execute DeFi operations
  • Handle automatic payment transactions

Best for

AI agents needing paid external servicesDeFi application developmentAutomated document processing workflowsBlockchain-based service marketplaces
Automatic payment processingSecure local wallet managementBase blockchain integration

About Fluora MCP

Fluora MCP is an official MCP server published by fluora-ai that provides AI assistants with tools and capabilities via the Model Context Protocol. Fluora MCP: AI agent marketplace for pay-per-use blockchain services — discover and auto-pay with USDC on Base, with sec It is categorized under finance, developer tools.

How to install

You can install Fluora MCP in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.

License

Fluora MCP is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.

🌟 Fluora MCP - Monetized AI Agent Services

npm version License: MIT

Transform your AI agents into revenue-generating businesses with seamless blockchain payments.

Fluora MCP enables AI agents to discover, access, and pay for monetized services across the web. Built on blockchain technology with automatic payment processing using USDC on Base network.

🚀 Quick Start

Claude Desktop

Edit your Claude Desktop config file:

  • Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "fluora-registry": {
      "command": "npx",
      "args": ["fluora-mcp"],
      "env": {
        "ENABLE_REQUEST_ELICITATION": "true",
        "ELICITATION_THRESHOLD": "0.01"
      }
    }
  }
}

VS Code (Cline/Continue Extension)

Add to your VS Code MCP settings:

{
  "mcpServers": {
    "fluora-registry": {
      "command": "npx",
      "args": ["fluora-mcp"],
      "env": {
        "ENABLE_REQUEST_ELICITATION": "true",
        "ELICITATION_THRESHOLD": "0.01"
      }
    }
  }
}

Note: Exact location depends on your MCP extension (Cline vs Continue).

🦞 OpenClaw Integration

Install from GitHub for best compatibility:

# Clone and build
git clone https://github.com/fluora-ai/fluora-mcp.git
cd fluora-mcp
npm install
npm run build


# Add to mcporter
mcporter config add fluora --command "node /path/to/fluora-mcp/build/index.js"

# Verify installation

mcporter list fluora
mcporter call fluora.exploreServices category=PDF

OpenClaw users: The MCP server will be automatically available to your agent after adding it to mcporter.

🎬 What Happens After Install

When you first run fluora-mcp:

  1. ✅ A wallet is automatically generated at ~/.fluora/wallets.json
  2. ✅ The MCP server starts and loads the services on the fluora registry
  3. ✅ Your wallet addresses are ready:

   - Testnet (Base Sepolia): Check ~/.fluora/wallets.json    - Mainnet (Base): Check ~/.fluora/wallets.json

⚠️ IMPORTANT: Backup your wallet!

# Backup your wallet file (contains private keys)
cp ~/.fluora/wallets.json ~/fluora-wallet-backup.json

Next Steps:

  1. Fund your wallet (see Funding Your Wallet below)
  2. Restart Claude Desktop/VS Code to load the MCP server
  3. Ask your AI: "What services are available on Fluora?"

💰 Funding Your Wallet

To use paid services, you need USDC in your wallet.

For Production (Mainnet)

  1. Get your mainnet address:    bash    cat ~/.fluora/wallets.json | grep -A 1 MAINNET   

  2. Transfer USDC on Base network    - Recommended: Transfer $1 to start    - Network: Base (not Ethereum mainnet!)    - Token: USDC

💡 Tip: Most services cost $0.001-0.02 per call, so $1 goes a long way!

✨ What You Get

  • 🔍 Service Discovery: Access 76+ monetized services (Browse All)

  - PDF Generation & Conversion   - DeFi Data & Analytics (Solana, Base)   - Web Scraping & Screenshots   - AI Research & Analysis

  • IG/Twitter Scraping   - And more...

  • 💳 Auto Payments: Seamless USDC transactions on Base blockchain

  • 🤖 AI Integration: Works with Claude Desktop, VS Code, OpenClaw, and any MCP client

  • 🔐 Secure Wallets: Auto-generated private keys stored locally

  • 📊 Real-time: Live service status, pricing, and availability

🎯 Core Features

Service Discovery


# Ask your AI agent:

"What PDF services are available via Fluora?"
"Show me DeFi operations under $1 on Fluora"
"Take a screenshot of <website URL> using Fluora "

Automatic Payments

  • USDC on Base: Testnet (Sepolia) and Mainnet support
  • Auto-signing: Transactions signed automatically
  • Instant settlement: Real-time payment verification
  • Secure storage: Private keys never leave your machine

Developer Experience

  • MCP Standard: Full Model Context Protocol compatibility
  • Multiple Transports: STDIO and Server-Sent Events (SSE)
  • Rich Logging: Winston-based logging with configurable levels
  • Error Handling: Graceful degradation and detailed reporting

🛠 Configuration

Environment Variables


MCP_TRANSPORT=stdio              		# stdio | sse
FLUORA_API_URL=https://api.fluora.ai/api # For local development
LOG_LEVEL=INFO                   		# DEBUG | INFO | WARN | ERROR
ENABLE_UNSAFE_DIRECT_ACCESS=false		# CAUTION! Only for development intent
ENABLE_REQUEST_ELICITATION=true			# Usage control over services

Where to put env vars:

  • Claude Desktop: Set in your shell profile (~/.zshrc or ~/.bashrc)
  • VS Code: Use extension settings or .env file
  • OpenClaw: Set in your shell or OpenClaw config

Wallet Setup

Wallets auto-generate at ~/.fluora/wallets.json:

{
  "USDC_BASE_SEPOLIA": {
    "privateKey": "0x...",
    "address": "0x..."
  },
  "USDC_BASE_MAINNET": {
    "privateKey": "0x...",
    "address": "0x..."
  }
}

🔧 Troubleshooting

Server Not Starting

# Check if wallet exists
ls -la ~/.fluora/wallets.json
# Check logs
tail -f ~/.fluora/fluora-mcp.log

"No Funds" Error

  • Check your wallet balance on Base Sepolia/Mainnet
  • Most services cost $0.001-0.02
  • Fund with testnet USDC first to test

Claude Desktop Not Seeing Tools

  1. Verify config: cat ~/Library/Application\ Support/Claude/claude_desktop_config.json
  2. Restart Claude Desktop completely (quit and reopen)
  3. Check Developer Tools (Cmd+Option+I on Mac) for errors

Services Not Loading

# Test server directly
npx fluora-mcp

# Should show: "Request elicitation for MCP services (Human-In-The-Loop for purchase), ENABLED"
# Should list 76+ services

Deprecation Warnings

These warnings are non-critical but will be addressed in future updates.

🔐 Security

  • Local Storage: Private keys stored locally, never transmitted
  • Blockchain Native: All payments verified on-chain
  • X402 Protocol: Standardized payment verification
  • No Data Retention: Service data not stored or logged
  • ⚠️ BACKUP YOUR WALLET: Losing ~/.fluora/wallets.json = losing funds

🤝 Support

📄 License

MIT License - Built with ❤️ for the AI economy


Ready to monetize your AI services?

npm install -g fluora-mcp && fluora-mcp

Alternatives

Related Skills

Browse all skills
finance-skills

Production-ready financial analyst skill with ratio analysis, DCF valuation, budget variance analysis, and rolling forecast construction. 4 Python tools (all stdlib-only). Works with Claude Code, Codex CLI, and OpenClaw.

55
ui-design-system

UI design system toolkit for Senior UI Designer including design token generation, component documentation, responsive design calculations, and developer handoff tools. Use for creating design systems, maintaining visual consistency, and facilitating design-dev collaboration.

18
ai-sdk

Answer questions about the AI SDK and help build AI-powered features. Use when developers: (1) Ask about AI SDK functions like generateText, streamText, ToolLoopAgent, embed, or tools, (2) Want to build AI agents, chatbots, RAG systems, or text generation features, (3) Have questions about AI providers (OpenAI, Anthropic, Google, etc.), streaming, tool calling, structured output, or embeddings, (4) Use React hooks like useChat or useCompletion. Triggers on: "AI SDK", "Vercel AI SDK", "generateText", "streamText", "add AI to my app", "build an agent", "tool calling", "structured output", "useChat".

6
api-documenter

Master API documentation with OpenAPI 3.1, AI-powered tools, and modern developer experience practices. Create interactive docs, generate SDKs, and build comprehensive developer portals. Use PROACTIVELY for API documentation or developer portal creation.

4
openai-knowledge

Use when working with the OpenAI API (Responses API) or OpenAI platform features (tools, streaming, Realtime API, auth, models, rate limits, MCP) and you need authoritative, up-to-date documentation (schemas, examples, limits, edge cases). Prefer the OpenAI Developer Documentation MCP server tools when available; otherwise guide the user to enable `openaiDeveloperDocs`.

4
cli-builder

Guide for building TypeScript CLIs with Bun. Use when creating command-line tools, adding subcommands to existing CLIs, or building developer tooling. Covers argument parsing, subcommand patterns, output formatting, and distribution.

3