by fluora-ai
Fluora MCP: AI agent marketplace for pay-per-use blockchain services — discover and auto-pay with USDC on Base, with sec
Enables AI agents to automatically discover, purchase, and use paid services like PDF processing and DeFi operations using USDC payments on the Base blockchain.
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.
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.
MIT
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.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
We evaluated Fluora MCP against two servers with overlapping tools; this profile had the clearer scope statement.
We wired Fluora MCP into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Useful MCP listing: Fluora MCP is the kind of server we cite when onboarding engineers to host + tool permissions.
Useful MCP listing: Fluora MCP is the kind of server we cite when onboarding engineers to host + tool permissions.
We evaluated Fluora MCP against two servers with overlapping tools; this profile had the clearer scope statement.
Fluora MCP is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Fluora MCP reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Strong directory entry: Fluora MCP surfaces stars and publisher context so we could sanity-check maintenance before adopting.
We wired Fluora MCP into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
According to our notes, Fluora MCP benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
showing 1-10 of 41
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.
Edit your Claude Desktop config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"fluora-registry": {
"command": "npx",
"args": ["fluora-mcp"],
"env": {
"ENABLE_REQUEST_ELICITATION": "true",
"ELICITATION_THRESHOLD": "0.01"
}
}
}
}
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).
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.
When you first run fluora-mcp:
~/.fluora/wallets.json - 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
To use paid services, you need USDC in your wallet.
Get your mainnet address:
bash cat ~/.fluora/wallets.json | grep -A 1 MAINNET
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!
- 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
# 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 "
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:
~/.zshrc or ~/.bashrc).env fileWallets auto-generate at ~/.fluora/wallets.json:
{
"USDC_BASE_SEPOLIA": {
"privateKey": "0x...",
"address": "0x..."
},
"USDC_BASE_MAINNET": {
"privateKey": "0x...",
"address": "0x..."
}
}
# Check if wallet exists
ls -la ~/.fluora/wallets.json
# Check logs
tail -f ~/.fluora/fluora-mcp.log
cat ~/Library/Application\ Support/Claude/claude_desktop_config.json# Test server directly
npx fluora-mcp
# Should show: "Request elicitation for MCP services (Human-In-The-Loop for purchase), ENABLED"
# Should list 76+ services
These warnings are non-critical but will be addressed in future updates.
~/.fluora/wallets.json = losing fundsMIT License - Built with ❤️ for the AI economy
Ready to monetize your AI services?
npm install -g fluora-mcp && fluora-mcp
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.