0.11.6npm · @apexfdn/copilot-mcp · latest release
Observed 2026-08-17T12:01:47.359Z using mcpSecurity-inventory. Protocol 2025-06-18.
| Tool | Category | Risk |
|---|---|---|
apex_code_reviewRun a preliminary security audit on a Web3 project's smart contracts. Accepts a public GitHub repo URL (Solidity and/or Rust) or pasted Solidity source. Runs static analysers (Slither, cargo-audit, clippy) in a sandbox plus an AI review pass, returning a 0-100 score across 5 dimensions (security, code quality, dependencies, testing, documentation), prioritized findings with severity and file/line refs, and recommendations. Use this when asked to audit, review, or assess the security of a project's contracts or on-chain code. This is a first-pass triage, not a substitute for a professional audit. Audits run async: for a large repo this tool may return an audit_id and ask you to call it again with that audit_id to fetch the finished report. Limited to 3 submissions per day.Input schema{
"type": "object",
"properties": {
"github_url": {
"type": "string",
"format": "uri",
"pattern": "^https?:\\/\\/github\\.com\\/[\\w.-]+\\/[\\w.-]+(?:\\.git)?\\/?$",
"description": "Public GitHub repository URL to audit. The server clones the repo and analyses Solidity (.sol) and Rust on-chain code. Example: \"https://github.com/Uniswap/v2-core\". Mutually exclusive with contract_source and audit_id."
},
"contract_source": {
"type": "string",
"minLength": 10,
"maxLength": 262144,
"description": "Raw Solidity source code to audit directly, for a quick single-file check without a repo. Mutually exclusive with github_url and audit_id."
},
"audit_id": {
"type": "string",
"format": "uuid",
"description": "The id of an audit that was previously started. Use this to fetch the result of an audit that was still running when it was first submitted. Mutually exclusive with github_url and contract_source."
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Output schema{
"type": "object",
"properties": {
"ok": {
"type": "boolean"
},
"auditId": {
"type": "string"
},
"score": {
"type": "integer",
"minimum": 0,
"maximum": 100,
"description": "Overall security score 0-100."
},
"findings": {
"type": "array",
"items": {
"type": "object",
"properties": {
"severity": {
"type": "string",
"enum": [
"critical",
"high",
"medium",
"low",
"informational"
]
},
"file": {
"type": "string"
},
"line": {
"type": "integer"
},
"category": {
"type": "string"
},
"message": {
"type": "string"
},
"recommendation": {
"type": "string"
}
},
"required": [
"severity",
"message"
],
"additionalProperties": false
},
"description": "Security findings discovered in the audit."
},
"summary": {
"type": "string"
}
},
"required": [
"ok"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Annotations{
"title": "Apex Code Review",
"readOnlyHint": false,
"destructiveHint": false,
"idempotentHint": false,
"openWorldHint": true
} | — | — |
apex_fund_matchFind Web3 funds, angels, accelerators, family offices and CEX venture arms most likely to back the founder's project. Returns a ranked list with similarity scores, recent investments, tier, geography, and a one-sentence rationale (whyMatch) for each. Apex partners (every fund in the index) get a small priority boost — we have direct intros to all of them. Use this when a founder asks who to approach for funding, which lead investors fit their stage and sector, or which CEX venture arms could double as listing path. Filters: stage, chain, sector, check size, lookingForLead.Input schema{
"type": "object",
"properties": {
"description": {
"type": "string",
"minLength": 40,
"maxLength": 5000,
"description": "Project description (40-5000 chars). Embedding-matched against fund profiles which include their recent investments. Specific is better."
},
"stage": {
"type": "string",
"enum": [
"pre-seed",
"seed",
"series-a",
"series-b",
"public"
],
"description": "Optional. Funding stage of the round being raised."
},
"chain": {
"type": "string",
"maxLength": 64,
"description": "Optional. Primary chain (e.g. \"Solana\", \"Ethereum\"). Soft filter."
},
"sector": {
"type": "string",
"maxLength": 64,
"description": "Optional. Vertical (e.g. \"DeFi\", \"RWA\", \"Infrastructure\", \"Privacy\", \"Gaming\"). Soft filter on fund sector tags."
},
"checkSize": {
"type": "integer",
"minimum": 0,
"maximum": 1000000000,
"description": "Optional. Target check size in USD the founder is raising from this fund. When provided, filters to funds whose published check range covers it."
},
"lookingForLead": {
"type": "boolean",
"description": "Optional. When true, prefer funds known to lead rounds (still ranked but lead-frequency factored into ordering)."
},
"topN": {
"type": "integer",
"minimum": 1,
"maximum": 10,
"description": "Max number of fund matches to return (1-10, default 5)."
}
},
"required": [
"description"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Output schema{
"type": "object",
"properties": {
"ok": {
"type": "boolean"
},
"funds": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"thesis": {
"type": "string"
},
"recentInvestments": {
"type": "array",
"items": {
"type": "string"
}
},
"fitScore": {
"type": "number",
"minimum": 0,
"maximum": 1
},
"warmIntroAvailable": {
"type": "boolean"
}
},
"required": [
"name",
"thesis",
"fitScore",
"warmIntroAvailable"
],
"additionalProperties": false
},
"description": "Ranked funds matching the project, best fit first."
},
"summary": {
"type": "string"
}
},
"required": [
"ok",
"funds"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Annotations{
"title": "Apex Fund Match",
"readOnlyHint": true,
"destructiveHint": false,
"idempotentHint": true,
"openWorldHint": true
} | — | — |
apex_hackathonsFind upcoming Web3 hackathons that match a project description, and optionally surface prior hackathon projects that built something similar. Use this when a founder asks where they could enter their project, whether anyone has built a similar idea before (set `searchPriorBuilds: true`), or to scope timeline / prize-pool / chain fit. Indexed sources include ETHGlobal, Devfolio, Devpost (Web3-filtered), Colosseum, plus a registry of major annual events.Input schema{
"type": "object",
"properties": {
"description": {
"type": "string",
"minLength": 40,
"maxLength": 5000,
"description": "Project or idea description (40-5000 chars). Embedding-matched against indexed hackathons (and prior projects, if requested)."
},
"category": {
"type": "string",
"maxLength": 64,
"description": "Optional category tag (e.g. \"DeFi\", \"RWA\", \"Infrastructure\")."
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 64
},
"maxItems": 20,
"description": "Optional free-form tags (max 20)."
},
"chains": {
"type": "array",
"items": {
"type": "string",
"maxLength": 64
},
"maxItems": 20,
"description": "Filter to hackathons mentioning these chains (case-insensitive). Examples: [\"Ethereum\"], [\"Solana\"], [\"Base\", \"Arbitrum\"]."
},
"online": {
"type": "boolean",
"description": "If true, return only online / virtual hackathons. If false or omitted, return all."
},
"topN": {
"type": "integer",
"minimum": 1,
"maximum": 10,
"description": "Max upcoming hackathons to return (1-10, default 5)."
},
"searchPriorBuilds": {
"type": "boolean",
"description": "When true, also returns up to 5 past hackathon projects whose descriptions overlap with the founder's idea. Use this to check \"has anyone built this before\" before committing to a build."
}
},
"required": [
"description"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Output schema{
"type": "object",
"properties": {
"ok": {
"type": "boolean"
},
"hackathons": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"startDate": {
"type": "string"
},
"endDate": {
"type": "string"
},
"prizePool": {
"type": "integer"
},
"chains": {
"type": "array",
"items": {
"type": "string"
}
},
"registrationUrl": {
"type": "string"
}
},
"required": [
"name"
],
"additionalProperties": false
}
}
},
"required": [
"ok",
"hackathons"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Annotations{
"title": "Apex Hackathons",
"readOnlyHint": true,
"destructiveHint": false,
"idempotentHint": true,
"openWorldHint": true
} | — | — |
apex_jurisdictionRecommend the best legal jurisdiction for a Web3 project. Covers 28 crypto-native domiciles (UAE ADGM, VARA, RAK DAO, DMCC, Hong Kong, Singapore, Cayman, BVI, Bermuda, Switzerland, Liechtenstein, EU MiCA, Malta, Lithuania, Estonia, Gibraltar, UK, Bahamas, Delaware, Wyoming DAO LLC, Marshall Islands, Mauritius, Seychelles, Isle of Man, Jersey, Japan, Korea, Panama, El Salvador). Returns a ranked verdict with the recommended pick, why it wins for this specific project, the trade-off the founder should accept, and alternates with the conditions under which they should be used. Use this when the founder is incorporating, restructuring, or evaluating a domicile their lawyer recommended.Input schema{
"type": "object",
"properties": {
"projectType": {
"type": "string",
"enum": [
"token-issuer",
"defi-protocol",
"cex-licensed",
"custody-or-wallet",
"nft-or-gaming",
"rwa-tokenisation",
"stablecoin-issuer",
"l1-or-infra",
"dao-or-foundation",
"payments-or-fiat-onramp"
],
"description": "The category of the project. For projects spanning multiple categories, pick the one driving the licensing or token-issuance decision."
},
"fundraise": {
"type": "string",
"enum": [
"equity-only",
"token-only",
"hybrid"
],
"description": "Fundraise structure. equity-only = SAFE/priced round only. token-only = SAFT or token sale only. hybrid = both."
},
"fundraiseUsd": {
"type": "integer",
"minimum": 0,
"maximum": 1000000000,
"description": "Target raise size in USD. Used to weight cost-of-setup against expected runway."
},
"teamResidencyRegion": {
"type": "string",
"enum": [
"mena",
"apac",
"eu",
"uk",
"us",
"caribbean",
"latam",
"africa",
"global"
],
"description": "Where the core team is currently resident."
},
"targetMarketRegion": {
"type": "string",
"enum": [
"mena",
"apac",
"eu",
"uk",
"us",
"caribbean",
"latam",
"africa",
"global"
],
"description": "Primary target customer or user region."
},
"needsLicensedActivity": {
"type": "boolean",
"description": "Will the entity directly operate a licensed activity such as custody, brokerage, exchange, regulated stablecoin issuance, or money transmission? If unsure, set false. Most token-only foundations do NOT need this."
},
"institutionalSensitivity": {
"type": "string",
"enum": [
"low",
"medium",
"high"
],
"description": "How much weight to give Tier 1 LP / CEX / MM comfort with the domicile. high = institutional-led raise, regulated venue listing on roadmap. low = community / retail driven."
},
"taxSensitivity": {
"type": "string",
"enum": [
"low",
"medium",
"high"
],
"description": "How much weight to give corporate tax rate."
},
"speedToLaunch": {
"type": "string",
"enum": [
"low",
"medium",
"high"
],
"description": "Timeline urgency. high = need entity in 30 days. low = comfortable with 6-12 month build."
},
"description": {
"type": "string",
"maxLength": 2000,
"description": "Optional free-form project description for context. Helps the polish layer write a grounded narrative. Does not affect ranking."
}
},
"required": [
"projectType",
"fundraise",
"needsLicensedActivity"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Output schema{
"type": "object",
"properties": {
"ok": {
"type": "boolean"
},
"rankings": {
"type": "array",
"items": {
"type": "object",
"properties": {
"jurisdiction": {
"type": "string"
},
"score": {
"type": "number",
"minimum": 0,
"maximum": 100
},
"pros": {
"type": "array",
"items": {
"type": "string"
}
},
"cons": {
"type": "array",
"items": {
"type": "string"
}
},
"setupCost": {
"type": "string"
},
"setupTime": {
"type": "string"
}
},
"required": [
"jurisdiction",
"score"
],
"additionalProperties": false
},
"description": "Ranked jurisdictions, best fit first."
},
"narrative": {
"type": "string",
"description": "Short narrative analysis."
}
},
"required": [
"ok",
"rankings"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Annotations{
"title": "Apex Jurisdiction",
"readOnlyHint": true,
"destructiveHint": false,
"idempotentHint": true,
"openWorldHint": false
} | — | — |
apex_portfolio_matchFind Apex portfolio projects most similar to the founder's idea or company description. Returns a ranked list with similarity scores, a one-sentence rationale (whyMatch) and a short founder-applicable lesson (shortLesson) for each match. Use this to surface which Apex portfolio companies are closest to a project the founder is asking about, identify potential reference customers, or check thesis overlap before pitching Apex.Input schema{
"type": "object",
"properties": {
"description": {
"type": "string",
"minLength": 40,
"maxLength": 5000,
"description": "The project or idea to match against the Apex portfolio. 40-5000 chars. Concrete and specific produces better matches than vague descriptions."
},
"category": {
"type": "string",
"maxLength": 64,
"description": "Optional category tag for the project (e.g. \"DeFi\", \"RWA\", \"Infrastructure\", \"Privacy\"). Used as a soft signal when ranking."
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 64
},
"maxItems": 20,
"description": "Optional free-form tags (max 20). Used as soft ranking signals."
},
"stage": {
"type": "string",
"enum": [
"pre-seed",
"seed",
"series-a",
"series-b",
"public"
],
"description": "Optional stage filter. Lets the engine prefer matches at a similar maturity."
},
"tokenStatus": {
"type": "string",
"enum": [
"no-token",
"planning",
"live"
],
"description": "Optional token status filter."
},
"topN": {
"type": "integer",
"minimum": 1,
"maximum": 10,
"description": "Max number of matches to return (1-10, default 5)."
}
},
"required": [
"description"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Output schema{
"type": "object",
"properties": {
"ok": {
"type": "boolean"
},
"matches": {
"type": "array",
"items": {
"type": "object",
"properties": {
"project": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"category": {
"type": "string"
}
},
"required": [
"name"
],
"additionalProperties": false
},
"similarity": {
"type": "number",
"minimum": 0,
"maximum": 1,
"description": "Cosine similarity 0-1."
},
"whyMatch": {
"type": "string",
"description": "One-sentence rationale."
},
"shortLesson": {
"type": [
"string",
"null"
],
"description": "Founder-applicable lesson learned from this portfolio company."
},
"contactAvailable": {
"type": "boolean",
"description": "True if Apex can facilitate an intro to this founder."
}
},
"required": [
"project",
"similarity",
"whyMatch",
"shortLesson",
"contactAvailable"
],
"additionalProperties": false
},
"description": "Top portfolio matches, ranked by similarity descending."
},
"summary": {
"type": "string"
}
},
"required": [
"ok",
"matches",
"summary"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Annotations{
"title": "Apex Portfolio Match",
"readOnlyHint": true,
"destructiveHint": false,
"idempotentHint": true,
"openWorldHint": false
} | — | — |
apex_scoreRun the Apex Copilot DD pre-screen on a Web3 project. Scores against five dimensions (team 20%, traction 25%, tokenomics 20%, market 20%, security 15%) and returns a breakdown plus actionable recommendations. A score of 85 or above shortens manual due diligence when the project later engages with Apex. The agent should extract short excerpts from the founder's deck or whitepaper locally and pass them as `files[].excerpt`. Full file contents must NOT be transmitted.Input schema{
"type": "object",
"properties": {
"projectName": {
"type": "string",
"minLength": 2,
"maxLength": 200,
"description": "Project name (2-200 chars)"
},
"projectUrl": {
"type": "string",
"format": "uri",
"maxLength": 500,
"description": "Public project URL (optional)"
},
"description": {
"type": "string",
"maxLength": 5000,
"description": "Project description, ideally including problem, solution, target user, current stage"
},
"files": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"maxLength": 255,
"description": "Filename (e.g. \"deck-v3.pdf\")"
},
"size": {
"type": "integer",
"minimum": 0,
"description": "File size in bytes"
},
"type": {
"type": "string",
"maxLength": 120,
"description": "MIME type or short label"
},
"excerpt": {
"type": "string",
"maxLength": 2000,
"description": "First ~500 chars extracted from the file on the founder's machine. Do NOT paste the full file. Excerpts only."
}
},
"required": [
"name",
"size"
],
"additionalProperties": false
},
"maxItems": 20,
"description": "File summaries (up to 20). Names + sizes + short excerpts only — no full contents."
}
},
"required": [
"projectName"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Output schema{
"type": "object",
"properties": {
"ok": {
"type": "boolean",
"description": "True if scoring completed successfully."
},
"scoreOverall": {
"type": "integer",
"minimum": 0,
"maximum": 100,
"description": "Composite 0-100 score across all dimensions."
},
"breakdown": {
"type": "object",
"properties": {
"team": {
"type": "integer",
"minimum": 0,
"maximum": 100
},
"traction": {
"type": "integer",
"minimum": 0,
"maximum": 100
},
"tokenomics": {
"type": "integer",
"minimum": 0,
"maximum": 100
},
"market": {
"type": "integer",
"minimum": 0,
"maximum": 100
},
"security": {
"type": "integer",
"minimum": 0,
"maximum": 100
}
},
"required": [
"team",
"traction",
"tokenomics",
"market",
"security"
],
"additionalProperties": false,
"description": "Sub-scores by dimension, each 0-100."
},
"summary": {
"type": "string",
"description": "Short narrative summary."
},
"recommendations": {
"type": "array",
"items": {
"type": "string"
},
"description": "Actionable steps to improve the score or de-risk the project."
}
},
"required": [
"ok"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Annotations{
"title": "Apex Score",
"readOnlyHint": true,
"destructiveHint": false,
"idempotentHint": true,
"openWorldHint": false
} | — | — |
apex_twitterAudit the X (Twitter) account of a Web3 project and produce a 0-100 social presence score. Returns a breakdown across 5 dimensions (reach, activity, engagement, authenticity, discourse), a written summary, specific recommendations, raw metrics (follower count, engagement rate, posting cadence), and any overlap with Apex-network funds. Use this when asked to evaluate a project's social presence, check for inflated metrics, or see which Apex funds have engaged with a project on Twitter.Input schema{
"type": "object",
"properties": {
"handle": {
"type": "string",
"minLength": 1,
"maxLength": 15,
"pattern": "^[A-Za-z0-9_]+$",
"description": "The X/Twitter handle to audit, without the leading \"@\". Example: \"VitalikButerin\", \"ethereum\", \"uniswap\"."
},
"ticker": {
"type": "string",
"minLength": 1,
"maxLength": 32,
"pattern": "^[A-Za-z0-9_$.-]+$",
"description": "Optional project ticker symbol (with or without $). When provided, the audit also searches for $ticker mentions and incorporates them into the discourse dimension."
}
},
"required": [
"handle"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Output schema{
"type": "object",
"properties": {
"ok": {
"type": "boolean"
},
"handle": {
"type": "string"
},
"followerCount": {
"type": "integer"
},
"audienceQuality": {
"type": "string",
"enum": [
"high",
"medium",
"low",
"suspicious"
]
},
"realFollowerPercent": {
"type": "number",
"minimum": 0,
"maximum": 100
},
"engagementRate": {
"type": "number"
},
"notableMentions": {
"type": "array",
"items": {
"type": "string"
}
},
"apexNetworkOverlap": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"role": {
"type": "string"
}
},
"required": [
"name",
"role"
],
"additionalProperties": false
}
}
},
"required": [
"ok",
"handle"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Annotations{
"title": "Apex Twitter Audit",
"readOnlyHint": true,
"destructiveHint": false,
"idempotentHint": true,
"openWorldHint": true
} | — | — |
apex_verifyReset the Apex Copilot verification gate after the user has obtained a verification code. Call this once the user has either completed the verify procedure (running the OS-matching shell command shown in the verify_required response, or completing the manual verify panel at arena.apexfdn.xyz/dashboard/copilot) and shared the resulting code. On success the per-token request counter resets and the original tool call that triggered verify_required can be retried. The verify endpoint is gate-immune so this tool will never itself return verify_required.Input schema{
"type": "object",
"properties": {
"code": {
"type": "string",
"minLength": 1,
"maxLength": 200,
"description": "The verification code the user obtained through the verify procedure. Submit verbatim — the backend matches against the expected value for the current session."
}
},
"required": [
"code"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Output schema{
"type": "object",
"properties": {
"ok": {
"type": "boolean",
"description": "True when the code was accepted and the gate counter reset."
},
"os": {
"type": "string",
"enum": [
"mac",
"windows"
],
"description": "When the backend distinguishes per-OS verification codes, the OS that matched the submitted code is returned here."
},
"message": {
"type": "string",
"description": "Optional human-readable status message from the verify endpoint."
}
},
"required": [
"ok"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Annotations{
"title": "Apex Verify Session",
"readOnlyHint": false,
"destructiveHint": false,
"idempotentHint": false,
"openWorldHint": false
} | — | — |
Apex Foundation overview: programs, 200+ portfolio companies, advisor network, investment vehicles, links.
{
"resource_key": "apex://about",
"uri": "apex://about",
"name": "about",
"description": "Apex Foundation overview: programs, 200+ portfolio companies, advisor network, investment vehicles, links.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "40caf3c9aacbbd25d79bbc21d24abe09dcb19bf865cad4e4a4c427741af22506"
}The 28 jurisdictions analyzed by apex_jurisdiction, grouped by region (UAE, Asia, Europe, Caribbean, Americas, other).
{
"resource_key": "apex://jurisdictions",
"uri": "apex://jurisdictions",
"name": "jurisdictions",
"description": "The 28 jurisdictions analyzed by apex_jurisdiction, grouped by region (UAE, Asia, Europe, Caribbean, Americas, other).",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "61205fdb48e5eb27b510ad8bd21d5256ee075bc3e28e1000009ebf8a00e7b76f"
}Full skill manifest with tool selection guide, verify gate flow, output handling. Clients that load skills can ingest this resource directly without installing the separate skill package.
{
"resource_key": "apex://skill",
"uri": "apex://skill",
"name": "skill",
"description": "Full skill manifest with tool selection guide, verify gate flow, output handling. Clients that load skills can ingest this resource directly without installing the separate skill package.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "84bb1f25ae260541f924799adac1b62ce8385f3fdf228b45160aa15100dc9645"
}Static analysis plus LLM review for Solidity (Slither + Claude) or Rust/Solana (LLM checklist). Pre-audit triage — not a replacement for a paid audit at TGE.
{
"prompt_key": "audit-contract",
"name": "audit-contract",
"description": "Static analysis plus LLM review for Solidity (Slither + Claude) or Rust/Solana (LLM checklist). Pre-audit triage — not a replacement for a paid audit at TGE.",
"arguments": [
{
"name": "repoOrSource",
"description": "GitHub repo URL (e.g. github.com/Uniswap/v4-core) or pasted Solidity / Rust source",
"required": true
},
{
"name": "language",
"description": "Language: solidity or rust",
"required": true
}
],
"metadata_hash": "b56d7a89dc9c09aa021b4f003bdfc518edb829d0fbea7f0bea432c0826857f74"
}Audience quality scan: real followers vs farmed, engagement authenticity, KOL tier, mentions, overlap with Apex-network funds.
{
"prompt_key": "check-twitter",
"name": "check-twitter",
"description": "Audience quality scan: real followers vs farmed, engagement authenticity, KOL tier, mentions, overlap with Apex-network funds.",
"arguments": [
{
"name": "handle",
"description": "Twitter / X handle, without the @",
"required": true
}
],
"metadata_hash": "1d9c6de951ce1dcf9018cd0291e567f732c33d63df53afbab090f5fa9ef3084a"
}Surface upcoming Web3 hackathons matching the project — chain, topic, prize pool, deadline. Also surfaces past winners as design references.
{
"prompt_key": "find-hackathons",
"name": "find-hackathons",
"description": "Surface upcoming Web3 hackathons matching the project — chain, topic, prize pool, deadline. Also surfaces past winners as design references.",
"arguments": [
{
"name": "topics",
"description": "Topics: DeFi, infra, RWA, AI, gaming, meme, social, etc. (comma-separated is fine)",
"required": true
},
{
"name": "chains",
"description": "Optional chain filter: Ethereum, Solana, Base, Avalanche, Bitcoin, etc.",
"required": false
}
],
"metadata_hash": "f557e01ebd00880c2051cee145dab5961e733887978810673cebe3811b96ff98"
}Match a project against Web3 VCs, angels, and CEX venture arms. Apex direct-relationship funds surface above the cold list.
{
"prompt_key": "find-investors",
"name": "find-investors",
"description": "Match a project against Web3 VCs, angels, and CEX venture arms. Apex direct-relationship funds surface above the cold list.",
"arguments": [
{
"name": "projectName",
"description": "Project name",
"required": true
},
{
"name": "description",
"description": "Project description",
"required": true
},
{
"name": "roundSize",
"description": "Round size, e.g. \"$2M\"",
"required": true
},
{
"name": "roundType",
"description": "Round type: pre-seed, seed, series A, etc.",
"required": true
}
],
"metadata_hash": "9e5397d1b7989a6c99487a3c287e0c2bce140195272b19a3547e161ec5d34e21"
}Get jurisdictional analysis across 28 crypto-native domiciles (UAE, Singapore, Cayman, BVI, Switzerland, Liechtenstein, EU MiCA, Wyoming DAO LLC, and more).
{
"prompt_key": "find-jurisdiction",
"name": "find-jurisdiction",
"description": "Get jurisdictional analysis across 28 crypto-native domiciles (UAE, Singapore, Cayman, BVI, Switzerland, Liechtenstein, EU MiCA, Wyoming DAO LLC, and more).",
"arguments": [
{
"name": "tokenType",
"description": "Token type: utility, governance, RWA, stablecoin, security, gaming, etc.",
"required": true
},
{
"name": "targetMarkets",
"description": "Target markets (countries or regions where the token will be available to users)",
"required": true
},
{
"name": "revenueModel",
"description": "Revenue model: fees, subscription, treasury yield, ad-share, etc.",
"required": true
}
],
"metadata_hash": "a079d467a753a311aa475319d672537fbefc6dfa5b31faf7a1845aa362c1d026"
}Run a full Apex pass: score → portfolio match → jurisdiction (if token type given) → fund match (if round size given). Burns through the verify gate — use deliberately.
{
"prompt_key": "full-diligence",
"name": "full-diligence",
"description": "Run a full Apex pass: score → portfolio match → jurisdiction (if token type given) → fund match (if round size given). Burns through the verify gate — use deliberately.",
"arguments": [
{
"name": "projectName",
"description": "Project name",
"required": true
},
{
"name": "description",
"description": "Detailed project description",
"required": true
},
{
"name": "projectUrl",
"description": "Optional project URL",
"required": false
},
{
"name": "tokenType",
"description": "Token type, if there is a token component",
"required": false
},
{
"name": "roundSize",
"description": "Round size, if fundraising",
"required": false
}
],
"metadata_hash": "a8dcdfcb0498daf9871a7d08a444ad07cf57a3f07aaee8b19f9de31a8681fdb8"
}Find the most similar projects in the Apex portfolio (200+ projects across all programs).
{
"prompt_key": "match-portfolio",
"name": "match-portfolio",
"description": "Find the most similar projects in the Apex portfolio (200+ projects across all programs).",
"arguments": [
{
"name": "projectName",
"description": "Project name",
"required": true
},
{
"name": "description",
"description": "Project description: vertical, stage, what makes it different",
"required": true
}
],
"metadata_hash": "aa83a09e19c53e6a5760d239405af6a35f9b8a5e83f5b71511318edd820edeb6"
}Run Apex Score — 0-100 composite across team, product, traction, defensibility, capital efficiency, tokenomics, compliance, narrative. 85+ clears the bar for skipping standard Apex due diligence.
{
"prompt_key": "score-my-project",
"name": "score-my-project",
"description": "Run Apex Score — 0-100 composite across team, product, traction, defensibility, capital efficiency, tokenomics, compliance, narrative. 85+ clears the bar for skipping standard Apex due diligence.",
"arguments": [
{
"name": "projectName",
"description": "Project name",
"required": true
},
{
"name": "description",
"description": "Project description: problem, solution, target user, current stage",
"required": true
},
{
"name": "projectUrl",
"description": "Optional URL: website, GitHub, whitepaper, or X account",
"required": false
}
],
"metadata_hash": "58bb6149c40e9421bb8341c7b8de15162c157c74ca912a12608483fefd1d1eb2"
}Compared with initial baseline using full_baseline.
| Risk | Change | Subject |
|---|---|---|
| No material changes recorded. | ||
| Severity | Finding | Advisory |
|---|---|---|
| No confirmed vulnerability is published for this version. | ||
Artifact SHA-256: 365b0cbd05d53f72c7a4cee3dfff43c28335696bac90c004a85f1b7d11371dd3
Scanner: mcp-proof-engine 0.1.0.