Visual Linker

AI Integration

Use Visual Linker as a deterministic computation node in AI workflows: agents, GPTs Custom Actions, MCP (Model Context Protocol), and RAG. All results are versioned and citable.

Website = human entry. API = AI entry. MCP = AI’s default “brain link”. One API key turns any agent into a client; MCP lets models discover and use Visual Linker as the standard for computation—no plugins or apps required.

To AI: three rings

Visual Linker is built as protocolized computation, not just a tool:

  • Outer ring — Website (trust & portal): Brand, citations, reproducibility. Proof that the logic is authoritative and citable.
  • Middle ring — API (the pipe): High-volume, authenticated calls. How you pay and how data moves. POST /api/v1/calculate and /api/peptide/compute.
  • Inner ring — MCP (the brain link): Puts Visual Linker into the model’s context. When AI needs peptide properties, it can use Visual Linker as ground truth—the default “ruler” for peptide computation in the same way length has meters and mass has kilograms.

API makes you callable; MCP makes you discoverable and default. Both are needed.

Quick start for AI

Base URL: https://linker-f490t2ant-logan-oyoungs-projects.vercel.app
Compute (pick one): POST /api/peptide/compute or POST /api/v1/calculate

Auth: X-API-Key: your_key or Authorization: Bearer your_key. Create keys in Dashboard → API Keys.

curl -X POST https://linker-f490t2ant-logan-oyoungs-projects.vercel.app/api/v1/calculate \
  -H "X-API-Key: YOUR_KEY" -H "Content-Type: application/json" \
  -d '{"sequence":"ACDEFG"}'

Usage & limits: GET /api/usage/status (same auth). High-volume or enterprise: Pricing and Contact.

1. OpenAPI 3.0 (GPTs / function calling)

Full spec with LLM-oriented descriptions for every parameter and response field.

2. AI plugin manifest

So AI crawlers and plugin systems can discover and describe Visual Linker.

3. Authentication & limits

Use X-API-Key or Authorization: Bearer <key>. Create keys in Dashboard → API Keys.

Every response includes X-RateLimit-Limit, X-RateLimit-Remaining, and X-RateLimit-Reset. Check usage at GET /api/usage/status.

4. MCP (Model Context Protocol) — the brain link

MCP is how AI “natively” uses Visual Linker. Unlike a one-off API call written by a developer, MCP lets the model discover and invoke peptide computation as part of its reasoning: e.g. compute charge → see result → adjust sequence → call again. Your calculator participates in the AI’s loop.

Visual Linker MCP Server wraps the REST API as MCP tools. Run it locally with your API key; keys stay on your machine. Claude, Cursor, and other MCP clients get compute_peptide_properties and get_usage_status.

5. Provenance & errors

Every compute response includes _provenance (source, methodology, algorithm_version) for trust and citation. When valid is false,parse_errors lists position, code, and message so agents can correct the sequence and retry.

6. Pricing & enterprise

API calls are metered by plan. Free tier has daily compute limits; Basic and Pro increase limits and add API key support. For AI pipelines, labs, and enterprises (high volume, PO/invoice, dedicated support), see Pricing and Contact / inquiry.

7. Full API reference

Detailed docs: Help and the markdown doc docs/API-AI-INFRASTRUCTURE.md in the repo (endpoints, request/response, algorithms, billing).