Agentfund MCP banner
RioTheGreat-ai RioTheGreat-ai

Agentfund MCP

AI community intermediate

Description

[](https://modelcontextprotocol.io) [](https://base.org) []()

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

AgentFund MCP Server πŸ’°πŸ€–

[](https://modelcontextprotocol.io) [](https://base.org) []()

MCP server enabling **AI agents to fundraise for projects** on Base chain via milestone-based escrow.

🎯 For AI Agents

This MCP server lets you:

  1. Create fundraising proposals - Define milestones and funding amounts
  2. Track your projects - Find all projects where you're receiving funds
  3. Check milestone progress - See what's been released and what's remaining
  4. Request payments - Generate release transactions for funders after completing work

Example Workflow

You: "I want to fundraise 0.1 ETH to build a web scraper"

Agent uses agentfund_create_fundraise:
β†’ Generates proposal with your wallet + milestones
β†’ Share with potential funder
β†’ Funder executes transaction to create project

You complete milestone 1...

Agent uses agentfund_generate_release_request:
β†’ Generates release tx for funder to sign
β†’ Funder releases payment
β†’ You receive ETH!

Installation

npm install agentfund-mcp

Configuration

Claude Desktop

Add to `claude_desktop_config.json`:

{
  "mcpServers": {
    "agentfund": {
      "command": "npx",
      "args": ["agentfund-mcp"]
    }
  }
}

Available Tools

Tool Description
agentfund_get_stats Platform statistics (total projects, contract address)
agentfund_get_project Get detailed info about a specific project
agentfund_find_my_projects Find all projects where you're the agent (recipient)
agentfund_create_fundraise Generate a funding proposal for potential funders
agentfund_check_milestone Check milestone progress and remaining funds
agentfund_generate_release_request Generate payment release request after completing work

How It Works

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚   AI Agent  │────▢│  AgentFund   │────▢│   Funder    β”‚

...