# Apideck MCP Server

Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 20+ accounting systems, HRIS platforms, file storage providers, and more through one integrati…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add apideck/mcp-server

# Browse available tools
npx -y @smithery/cli@latest tool list apideck/mcp-server

# Get full schema for a tool
npx -y @smithery/cli@latest tool get apideck/mcp-server list_tools

# Call a tool
npx -y @smithery/cli@latest tool call apideck/mcp-server list_tools '{}'
```

## Direct MCP Connection

Endpoint: `https://mcp-server--apideck.run.tools`

## Tools (4)

- `list_tools` — List available tools. Optionally filter by search terms that match against tool name, description, and scopes.
- `describe_tool_input` — Get the input schema for one or more tools. It is a good idea to call this tool first to understand how to successfully…
- `execute_tool` — Execute a tool by name with the provided input parameters. If executing a given tool for the first time, it is recommen…
- `list_scopes` — List the scopes available on this server.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get apideck/mcp-server <tool-name>
```
