Digits .well Known API

The .well Known API from Digits — 2 operation(s) for .well known.

Operations 2

GET /.well-known/mcp.json MCP metadata (legacy) #
GET /.well-known/mcp/server.json MCP Server Card (SEP-1649) #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/digits-com-well-known-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

digits-com-well-known-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Digits Llms.txt .well Known .well Known API
  description: Digits is the world's first Agentic General Ledger (AGL) — AI-powered accounting software that auto-books 95%+ of transactions in real time. This document describes publicly available endpoints on digits.com. For the full Digits product API, visit https://digits.com/api or request a demo at https://digits.com/demo.
  version: 1.0.0
  contact:
    name: Digits
    url: https://digits.com/demo
  x-logo:
    url: https://digits.com/favicon/favicon.svg
servers:
- url: https://digits.com
  description: Digits marketing site
tags:
- name: .well Known
paths:
  /.well-known/mcp.json:
    get:
      operationId: getMcpConfig
      summary: MCP metadata (legacy)
      description: Returns MCP (Model Context Protocol) site metadata for AI client discovery. This is the legacy informal format. For the spec-compliant MCP Server Card, see /.well-known/mcp/server.json.
      responses:
        '200':
          description: MCP configuration
          content:
            application/json:
              schema:
                type: object
      tags:
      - .well Known
  /.well-known/mcp/server.json:
    get:
      operationId: getMcpServerCard
      summary: MCP Server Card (SEP-1649)
      description: Returns the MCP Server Card following the official registry schema (SEP-1649). Used by AI agent readiness scanners, the MCP registry, and compatible AI clients for server discovery. Also served at /.well-known/mcp/server-card.json.
      responses:
        '200':
          description: MCP Server Card
          content:
            application/json:
              schema:
                type: object
                required:
                - name
                - description
                - version
                properties:
                  $schema:
                    type: string
                  name:
                    type: string
                  title:
                    type: string
                  description:
                    type: string
                  version:
                    type: string
                  websiteUrl:
                    type: string
                    format: uri
                  icons:
                    type: array
      tags:
      - .well Known