Skip to main content

Tool Reference

All tools are available at https://agents.securelend.ai/mcp via the MCP tools/call method.

Workspace Management

create_deal_workspace

Creates a named workspace to collect all agent outputs for a single deal. Every subsequent tool call that references the workspace ID will store its results there, enabling the professional_memo_agent to synthesise all data sources into a single memo. Parameters:
Returns: { workspaceId: string, clientName: string, status: "ACTIVE" } Cost: Free

get_deal_workspace

Retrieves a workspace and all task outputs stored in it. Parameters:
Returns: Workspace metadata + all prior agent task results indexed by task type Cost: Free

submit_documents

Upload one or more documents to a workspace for downstream analysis. Returns a documentId for use with pitch_deck_precheck, document_intelligence_agent, and data_extraction_agent. Parameters:
Returns: { documentId: string, status: "PENDING_UPLOAD" | "READY" } Cost: Free

Pitch Deck & Investment Analysis

pitch_deck_precheck

Scores a pitch deck PDF against a VC investment rubric. Sends the deck directly to the LLM (no OCR) for visual + text analysis. Returns an overall fit percentage, per-criterion breakdown, strengths, weaknesses, and follow-up questions calibrated to what an IC would push back on. Parameters:
Returns:
Cost: $0.50/check · First 15/month free (human), 1 free trial (M2M)

list_rubric_templates

Browse system-provided VC rubric templates. Useful for discovering which rubric to use before calling pitch_deck_precheck. Parameters: None Returns: Array of available rubrics with blueprintId, name, stage, thesis, criteriaCount Available system rubrics:
  • system#pitch-deck-vc-seed-b2b-fintech-infra — Seed B2B Fintech Infrastructure
  • system#pitch-deck-vc-seed-b2c-consumer — Seed B2C Consumer
  • system#pitch-deck-vc-series_a-fintech — Series A Fintech
  • system#pitch-deck-vc-series_a-vertical-saas — Series A Vertical SaaS
  • system#pitch-deck-vc-growth-general — Growth Stage (Series B+)
Cost: Free

create_custom_blueprint

Create a custom scoring rubric for your specific investment thesis. Parameters:
Cost: Free

Data Intelligence (BYOAK)

These tools require a third-party API key registered via configure_data_provider. Your API key is stored AES-256 encrypted and never leaves your tenant.

configure_data_provider

Register an API key for a data provider. Called once per provider — credentials persist until you rotate them. Parameters:
Cost: Free

fetch_company_intelligence

Enriches a company from Harmonic — funding history, headcount growth, traction signals, and investor data. Parameters:
Requires: configure_data_provider(provider: "harmonic", apiKey: "...") Cost: Free (your Harmonic API key usage applies)

fetch_crm_context

Pulls deal context, pipeline status, meeting notes, and field values from Affinity CRM. Parameters:
Requires: configure_data_provider(provider: "affinity", apiKey: "...") Cost: Free (your Affinity API usage applies)

fetch_portfolio_metrics

Retrieves portfolio company KPIs — ARR, MRR, burn rate, runway, and investor update notes from Visible.vc. Parameters:
Requires: configure_data_provider(provider: "visible", apiKey: "...") Cost: Free (your Visible API usage applies)

fetch_docsend_document

Ingests a pitch deck or dataroom document directly from a DocSend share link. Returns documentId for downstream analysis plus engagement analytics (views, dwell time per slide). Parameters:
Requires: configure_data_provider(provider: "docsend", apiKey: "...") (Business/Enterprise plan) Cost: Free (your DocSend plan applies)

fetch_public_filings

Retrieves SEC EDGAR filings for publicly traded companies. No API key required. Parameters:
Cost: Free

Compliance & KYC/KYB

entity_compliance_agent

Runs KYC (individuals) or KYB (entities) screening against sanctions lists, PEP registers, and adverse media. Supports ComplyAdvantage and Refinitiv World-Check. Parameters:
Returns:
Requires: configure_data_provider(provider: "complyadvantage", ...) or configure_data_provider(provider: "refinitiv", ...) Cost: $0.60/check · 0 free (BYOAK pricing applies)

Document Intelligence

document_intelligence_agent

Classifies, extracts structured data, and provides analysis for any financial document — financial statements, applications, identity documents, and more. Parameters:
Cost: $0.06/page · First 10 pages/month free

data_extraction_agent

Extracts structured fields from financial documents using the document’s extraction blueprint. Parameters:
Cost: $0.15/page · First 5 pages/month free

quantitative_analysis_agent

Financial ratio analysis, covenant testing, and scoring from extracted financial data. Parameters:
Cost: $1.50/analysis · First 5/month free

risk_discovery_agent

Identifies and scores risk factors across a document set or workspace. Parameters:
Cost: $0.24/page

Memo Generation

professional_memo_agent

Generates a full professional underwriting memo grounded in all prior agent outputs in a workspace. Supports three modes:
  • workspace (default when workspaceId provided) — synthesises all task outputs into a full memo
  • document — analyses a single document
  • lending_application — generates a credit memo from a lending application
Parameters:
Returns: Job details immediately. Memo generates async in ~75 seconds. Use get_memo_status to retrieve. Available templates:
  • vc-investment-memo-template — 7-section IC memo (auto-selected for VC workspaces)
  • default-credit-memo-template — Standard credit memo for lending
Cost: $4.99/memo · First 3/month free (human), 1 free trial (M2M)

get_memo_status

Polls the status of a memo generation job. Returns sections with full content when complete. Parameters:
Returns:
Cost: Free

Portfolio & Pipeline Analytics

portfolio_analytics_agent

Returns pipeline summary, deal velocity, and portfolio metrics for the current period. Parameters:
Cost: Free

submit_underwriting_case

Promotes a completed workspace into a formal case in the SecureLend LOS (Loan Origination System). Parameters:
Cost: Free

Payment Setup

initiate_payment_setup

Starts the Delegare payment authorization flow. Returns a URL — open it in a browser to authorize a monthly spending budget via card or crypto wallet. The one-time setup takes ~30 seconds; all subsequent tool charges are automatic. Parameters:
Returns: { setupUrl: string, sessionToken: string, ... }

check_payment_setup

Polls for completion of the payment setup flow. Returns complete with an active mandate once the user has authorized. Parameters:
Returns: { status: "pending" | "complete" | "expired", intentMandate?: string }