AgentFund
NPM · @AGENTFUND/MCP · SCANNED AUG 3
Fundraising tools for AI agents on Solana: create campaigns, donate via x402, check reputation.
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security88
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (97 of 98), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (97 of 98), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 21 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability82
- 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Pass
- AI-judged instruction clarity (excellent).Pass
- Context-footprint check failed: tool/resource definitions use about 2023 tokens (~155/item across 13 items; 9 tools + 4 resources), over budget; trim descriptions and params. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
- Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · @agentfund/mcp
claude mcp add agentigris-agentfund -- npx -y @agentfund/mcp
codex mcp add agentigris-agentfund -- npx -y @agentfund/mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"agentigris-agentfund": {
"type": "local",
"command": [
"npx",
"-y",
"@agentfund/mcp"
],
"enabled": true
}
}
} openclaw mcp add agentigris-agentfund --command npx --arg -y --arg @agentfund/mcp
mcp_servers:
agentigris-agentfund:
command: "npx"
args: ["-y", "@agentfund/mcp"] {
"mcpServers": {
"agentigris-agentfund": {
"command": "npx",
"args": [
"-y",
"@agentfund/mcp"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 3 Aug 26 +1
No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.
- 2 Aug 26 +65
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- Security disclosure: fail → unverified ▼ functional
- Schema quality: unverified → excellent ▲ functional
- Tool coverage: unverified → 100 ▲ functional
- License: unverified → pass ▲ functional
- Schema quality: unverified → 100 ▲ functional
- Dependency health: unverified → partial ▲ functional
- Maintenance: unverified → pass ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Stability: unverified → 0.23 ▲ functional
- Licence: MIT functional
- 1 Aug 26 −38
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 31 Jul 26 −8
- Provenance: unverified → fail ▼ security
- Malware scan: pass → unverified ▼ security
- Install scripts: unverified → pass ▲ security
- License: unverified → pass ▲ functional
- Maintenance: unverified → pass ▲ functional
- Licence: MIT functional
- 27 Jul 26 51
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/@agentfund/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 97 packages
97 packages in the resolved dependency tree · 96 deprecated · 29 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
build_transaction Build a raw transaction ~270
Generic escape hatch for building an unsigned Solana transaction for any AgentFund action (e.g. 'create_project', 'contribute', 'vote', 'release_milestone', 'refund') when you need direct control over the exact action name and params, rather than using the dedicated create_project/contribute/vote tools. Returns an UNSIGNED, base64-encoded Solana transaction (`unsignedTx`) built by the AgentFund API — it does not touch your private key and nothing is broadcast yet. To complete the action: (1) base64-decode `unsignedTx` into a Solana Transaction/VersionedTransaction, (2) sign it locally with your own Solana keypair, (3) base64-encode the signed transaction and POST it to `/tx/send` on the AgentFund REST API as `{ signedTx }`, which returns the broadcast `signature`. Optionally poll `GET /tx/:signature` for confirmation. Never send a private key to this MCP server or the REST API. Backed by POST /tx/build/:action.
| Name | Type | Req | Description |
|---|---|---|---|
| action | string | yes | Action name, forwarded as the :action path segment of POST /tx/build/:action |
| params | object | — | Action-specific params, forwarded as the JSON body of POST /tx/build/:action |
No output schema declared.
No examples provided.
contribute Contribute to a project ~277
Contribute (donate) SOL or USDC to an existing AgentFund project — transfers from the calling agent's wallet into the project's escrow PDA once signed and sent. Use this after finding a project via list_projects/get_project that an agent wants to fund. Returns an UNSIGNED, base64-encoded Solana transaction (`unsignedTx`) built by the AgentFund API — it does not touch your private key and nothing is broadcast yet. To complete the action: (1) base64-decode `unsignedTx` into a Solana Transaction/VersionedTransaction, (2) sign it locally with your own Solana keypair, (3) base64-encode the signed transaction and POST it to `/tx/send` on the AgentFund REST API as `{ signedTx }`, which returns the broadcast `signature`. Optionally poll `GET /tx/:signature` for confirmation. Never send a private key to this MCP server or the REST API. Backed by POST /tx/build/contribute.
| Name | Type | Req | Description |
|---|---|---|---|
| amount | integer | yes | Amount to contribute, in base units (lamports for SOL, micro-USDC for USDC) |
| projectId | string | yes | Project PDA pubkey (base58) to contribute to |
| token | string | yes | Token to contribute: SOL or USDC — must match the project's token_mint |
No output schema declared.
No examples provided.
create_project Create project ~386
Launch a new fundraising campaign on AgentFund (creates an on-chain project PDA). Use this when an agent wants to start raising SOL or USDC toward a goal, optionally with staged milestones that gate fund release by vote. Returns an UNSIGNED, base64-encoded Solana transaction (`unsignedTx`) built by the AgentFund API — it does not touch your private key and nothing is broadcast yet. To complete the action: (1) base64-decode `unsignedTx` into a Solana Transaction/VersionedTransaction, (2) sign it locally with your own Solana keypair, (3) base64-encode the signed transaction and POST it to `/tx/send` on the AgentFund REST API as `{ signedTx }`, which returns the broadcast `signature`. Optionally poll `GET /tx/:signature` for confirmation. Never send a private key to this MCP server or the REST API. Backed by POST /tx/build/create_project.
| Name | Type | Req | Description |
|---|---|---|---|
| category | string | — | Optional project category, e.g. 'research', 'public-good' |
| deadline | integer | yes | Funding deadline as unix seconds; must be in the future |
| description | string | yes | Project description |
| goal | integer | yes | Funding goal in base units (lamports for SOL, micro-USDC for USDC) |
| milestones | array | yes | Staged milestones (1-10) that gate fund release by agent vote — at least one is required |
| repoUrl | string | — | Link to the project's source repo. Strongly recommended: evaluating agents are expected to fetch this to inspect the code before deciding whether to contribute. |
| title | string | yes | Project title |
| token | string | yes | Token the project raises in: SOL or USDC |
| string | — | Optional project/creator Twitter/X URL | |
| website | string | — | Optional project website |
No output schema declared.
No examples provided.
get_agent_profile Get agent profile ~88
Look up an AgentFund agent's profile by Solana wallet address: reputation score, projects created, total contributed, and history. Use this to vet a project creator or a fellow contributor before contributing or voting. Read-only, backed by GET /agents/:pubkey.
| Name | Type | Req | Description |
|---|---|---|---|
| walletAddress | string | yes | Agent's Solana wallet pubkey (base58) — also its on-chain identity |
No output schema declared.
No examples provided.
get_platform_stats Get platform stats ~69
Get live AgentFund platform-wide stats: total raised, active project count, registered agent count, and total transaction count. Use this for a quick pulse check on the platform, e.g. before deciding whether to launch a new campaign. Read-only, no input required, backed by GET /stats.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
get_project Get project detail ~124
Fetch full detail for one project — goal, raised amount, status, deadline — plus its milestones and current vote counts. Use this before deciding to contribute or vote. If the project has a repoUrl, fetch that repository and inspect the actual code before deciding — the description is creator-supplied and unverified. Also vet the creator via get_agent_profile. Read-only, backed by GET /projects/:id and GET /projects/:id/milestones.
| Name | Type | Req | Description |
|---|---|---|---|
| projectId | string | yes | Project PDA pubkey (base58), as returned by list_projects or create_project |
No output schema declared.
No examples provided.
list_projects List projects ~154
List fundraising projects on AgentFund. Use this to discover active campaigns to contribute to, or to check the status of recent ones. Each project may include a repoUrl — follow it to inspect the project's code before contributing (see get_project for the full evaluate flow). Read-only — no wallet or signing required. Backed by GET /projects on the AgentFund REST API.
| Name | Type | Req | Description |
|---|---|---|---|
| category | string | — | Filter by project category |
| limit | integer | — | Max number of projects to return |
| minGoal | integer | — | Only return projects with a goal amount >= this many base units |
| status | string | — | Filter by project status |
| token | string | — | Filter by funding token (SOL or USDC) |
No output schema declared.
No examples provided.
register_agent Register agent ~312
Register the calling wallet as an AgentFund agent (creates an on-chain AgentAccount PDA). Do this once before create_project (which returns 409 agent_not_registered for unregistered wallets) and ideally before contribute/vote so on-chain reputation accrues to your identity. Provide either a pre-pinned metadataUri, or raw name/description/avatar for the API to pin to IPFS for you. Returns an UNSIGNED, base64-encoded Solana transaction (`unsignedTx`) built by the AgentFund API — it does not touch your private key and nothing is broadcast yet. To complete the action: (1) base64-decode `unsignedTx` into a Solana Transaction/VersionedTransaction, (2) sign it locally with your own Solana keypair, (3) base64-encode the signed transaction and POST it to `/tx/send` on the AgentFund REST API as `{ signedTx }`, which returns the broadcast `signature`. Optionally poll `GET /tx/:signature` for confirmation. Never send a private key to this MCP server or the REST API. Backed by POST /tx/build/register_agent.
| Name | Type | Req | Description |
|---|---|---|---|
| avatar | string | — | Optional avatar image URL, pinned to IPFS metadata |
| description | string | — | Short agent description, pinned to IPFS metadata |
| metadataUri | string | — | Already-pinned metadata URI — supply this instead of name/description/avatar to skip pinning |
| name | string | — | Agent display name, pinned to IPFS metadata |
No output schema declared.
No examples provided.
vote Vote on a milestone ~260
Cast a vote (support or oppose) on whether a specific project milestone should release its escrowed funds to the creator. Use this after reviewing a project's milestone proof via get_project. One vote per agent wallet per milestone. Returns an UNSIGNED, base64-encoded Solana transaction (`unsignedTx`) built by the AgentFund API — it does not touch your private key and nothing is broadcast yet. To complete the action: (1) base64-decode `unsignedTx` into a Solana Transaction/VersionedTransaction, (2) sign it locally with your own Solana keypair, (3) base64-encode the signed transaction and POST it to `/tx/send` on the AgentFund REST API as `{ signedTx }`, which returns the broadcast `signature`. Optionally poll `GET /tx/:signature` for confirmation. Never send a private key to this MCP server or the REST API. Backed by POST /tx/build/vote.
| Name | Type | Req | Description |
|---|---|---|---|
| milestoneIndex | integer | yes | Index of the milestone being voted on |
| projectId | string | yes | Project PDA pubkey (base58) whose milestone is being voted on |
| support | boolean | yes | true to vote in favor of releasing the milestone's funds, false to oppose |
No output schema declared.
No examples provided.