Truto MCP Servers API

Provision Model Context Protocol servers for AI agent access

Operations 1

POST /integrated-accounts/{id}/mcp Create MCP server for integrated account #

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/truto-mcp-servers-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

truto-mcp-servers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Truto Admin Accounts MCP Servers API
  description: The Truto Admin API enables programmatic management of the Truto integration platform, including managing integrated accounts, generating link tokens for customer OAuth flows, running post-install actions, and provisioning MCP servers for AI agent access.
  version: 1.0.0
  contact:
    url: https://truto.one/docs/api-reference/admin
servers:
- url: https://api.truto.one
  description: Truto API
security:
- bearerAuth: []
tags:
- name: MCP Servers
  description: Provision Model Context Protocol servers for AI agent access
paths:
  /integrated-accounts/{id}/mcp:
    post:
      operationId: createMcpServer
      summary: Create MCP server for integrated account
      description: Provision a Model Context Protocol (MCP) server for an integrated account. Returns a secure tokenized URL that AI agents (Claude, ChatGPT, custom LLM frameworks) can use to invoke the integration's tools. The URL itself serves as the auth token. Optionally filter which methods are exposed or require additional API token authentication for enterprise security.
      tags:
      - MCP Servers
      security:
      - bearerAuth: []
      parameters:
      - name: id
        in: path
        required: true
        description: Integrated account identifier.
        schema:
          type: string
      requestBody:
        required: false
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateMcpServerRequest'
      responses:
        '201':
          description: MCP server provisioned successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/McpServer'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  responses:
    Unauthorized:
      description: Authentication failed or token is invalid.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: Resource not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    CreateMcpServerRequest:
      type: object
      properties:
        allowedMethods:
          type: array
          items:
            type: string
          description: Limit the MCP server to only expose specific tool methods.
        requireAdditionalAuth:
          type: boolean
          description: Whether to require an additional API token for MCP server access.
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error code.
        message:
          type: string
          description: Human-readable error description.
    McpServer:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the MCP server.
        mcpUrl:
          type: string
          format: uri
          description: Secure tokenized URL for connecting AI agents to this MCP server.
        transport:
          type: string
          enum:
          - http
          - stdio
          description: MCP transport protocol.
        integratedAccountId:
          type: string
          description: Identifier of the integrated account this MCP server is scoped to.
        createdAt:
          type: string
          format: date-time
          description: Timestamp when the MCP server was provisioned.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Tenant Bearer token from the Truto dashboard.