---
title: "Unified MCP Server"
url: "https://docs.unified.to/mcp/additional-api-endpoints"
description: "Unified.to documentation"
generated_at: "2026-06-12T19:00:06.088Z"
---
# Unified MCP Server

## [Additional API Endpoints](#additional-api-endpoints)

[Get Tools](#get-tools) · [Call Tool](#post-toolsidcall)

### [GET /tools](#get-tools)

Get a list of the MCP tools associated with the connection. The payload will include an object with the parameters with name as the key and value.

Add these URL parameters to the MCP GetTools API URL:

|                          |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| permissions              | A comma-delimited list of permissions from [Unified.to](https://docs.unified.to/guides/how%5Fto%5Fconfigure%5Fwebhooks%5Fin%5Fhubspot#select-permission-scopes-on-unifiedto)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| tools                    | A comma-delimited list of tool IDs to restrict the MCP server.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| aliases                  | A list of words and their aliases to create additional descriptions for tools. In the format of word1:alias1,alias2;word2:alias1,alias2. eg. ?aliases=employee:user,person;employees:users,people                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| include\_external\_tools | Include an integration's tools from all of its API and not just the default supported unified API                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| type                     | Use this parameter to change the structure of the result to be used for: · **OpenAI**'s [function calling](https://platform.openai.com/docs/guides/function-calling) when type=openai · **Anthropic**'s [function calling](https://www.anthropic.com/engineering/writing-tools-for-agents) when type=anthropic · **Google Gemini**'s [function declarations](https://cloud.google.com/vertex-ai/generative-ai/docs/multimodal/function-calling) when type=gemini · **Cohere**'s [functions](https://docs.cohere.com/docs/tools) when type=cohere · **Grok**'s [functions](https://docs.x.ai/docs/guides/function-calling) when type=grok · **Groq**'s [functions](https://console.groq.com/docs/tool-use) when type=groq |
|                          |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |

The default (Anthropic) result is an array of:

```
{
    id: string;
    description: string;
    parameters: {
        name: string;
        description: string;
        required: boolean;
    }[]

}

```

### [POST /tools/{id}/call](#post-toolsidcall)

Add these URL parameters to the MCP CallTool API URL:

|                          |                                                                                                                                                                                                   |
| ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| hide\_sensitive          | Hides sensitive (ie. PII) data from results. These fields include name, emails, telephones, ...                                                                                                   |
| permissions              | A comma-delimited list of permissions from [Unified.to](https://docs.unified.to/guides/how%5Fto%5Fconfigure%5Fwebhooks%5Fin%5Fhubspot#select-permission-scopes-on-unifiedto)                      |
| aliases                  | A list of words and their aliases to create additional descriptions for tools. In the format of word1:alias1,alias2;word2:alias1,alias2. eg. ?aliases=employee:user,person;employees:users,people |
| include\_external\_tools | Include an integration's tools from all of its API and not just the default supported unified API                                                                                                 |
|                          |                                                                                                                                                                                                   |

The `payload` includes an object with parameters, each key is a parameter name.

Call that tools and return the result.

```
{
    content: {
        type: 'text';
        text: string;
    }[],
    structuredContent: JSON-object
}[]

```
