Documentation Index
Fetch the complete documentation index at: https://docs.securelend.ai/llms.txt
Use this file to discover all available pages before exploring further.
Tool Reference
All tools are available athttps://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:
{ workspaceId: string, clientName: string, status: "ACTIVE" }
Cost: Free
get_deal_workspace
Retrieves a workspace and all task outputs stored in it.
Parameters:
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:
{ 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:
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 Infrastructuresystem#pitch-deck-vc-seed-b2c-consumer— Seed B2C Consumersystem#pitch-deck-vc-series_a-fintech— Series A Fintechsystem#pitch-deck-vc-series_a-vertical-saas— Series A Vertical SaaSsystem#pitch-deck-vc-growth-general— Growth Stage (Series B+)
create_custom_blueprint
Create a custom scoring rubric for your specific investment thesis.
Parameters:
Data Intelligence (BYOAK)
These tools require a third-party API key registered viaconfigure_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:
fetch_company_intelligence
Enriches a company from Harmonic — funding history, headcount growth, traction signals, and investor data.
Parameters:
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:
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:
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:
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:
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:
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:
data_extraction_agent
Extracts structured fields from financial documents using the document’s extraction blueprint.
Parameters:
quantitative_analysis_agent
Financial ratio analysis, covenant testing, and scoring from extracted financial data.
Parameters:
risk_discovery_agent
Identifies and scores risk factors across a document set or workspace.
Parameters:
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
workspaceIdprovided) — synthesises all task outputs into a full memo - document — analyses a single document
- lending_application — generates a credit memo from a lending application
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
get_memo_status
Polls the status of a memo generation job. Returns sections with full content when complete.
Parameters:
Portfolio & Pipeline Analytics
portfolio_analytics_agent
Returns pipeline summary, deal velocity, and portfolio metrics for the current period.
Parameters:
submit_underwriting_case
Promotes a completed workspace into a formal case in the SecureLend LOS (Loan Origination System).
Parameters:
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:
{ 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:
{ status: "pending" | "complete" | "expired", intentMandate?: string }