Plaid MCP Server

Developmentstdiov0.2.0
Repositorio

Official Plaid MCP server for financial data connectivity. Lets AI agents work with Plaid's APIs to retrieve accounts, balances, and transactions, and to build and debug integrations for banking, payments, and identity. Useful for fintech development, personal finance tooling, and automating account data workflows.

Conectar

Añade esta configuración a .claude/mcp.json

{
  "mcpServers": {
    "plaid": {
      "command": "npx",
      "args": [
        "-y",
        "@plaid/mcp-server"
      ],
      "env": {
        "PLAID_CLIENT_ID": "<YOUR_PLAID_CLIENT_ID>",
        "PLAID_SECRET": "<YOUR_PLAID_SECRET>",
        "PLAID_ENV": "<YOUR_PLAID_ENV>"
      }
    }
  }
}

Herramientas (2)

get_accounts

Retrieve accounts and balances for a linked item.

{
  "type": "object",
  "required": [
    "access_token"
  ],
  "properties": {
    "access_token": {
      "type": "string",
      "description": "Plaid item access token"
    }
  }
}

get_transactions

Retrieve transactions for a linked item over a date range.

{
  "type": "object",
  "required": [
    "access_token",
    "start_date",
    "end_date"
  ],
  "properties": {
    "end_date": {
      "type": "string",
      "description": "End date (YYYY-MM-DD)"
    },
    "start_date": {
      "type": "string",
      "description": "Start date (YYYY-MM-DD)"
    },
    "access_token": {
      "type": "string",
      "description": "Plaid item access token"
    }
  }
}

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
Plaid (@plaid)
Repositorio
https://github.com/plaid/plaid-mcp-server
Licencia
MIT
Versión
0.2.0
Estrellas
240
Última actualización
9 de julio de 2026