> ## Documentation Index
> Fetch the complete documentation index at: https://docs.apowerb.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Mcp Configs

> List saved MCP server configurations for the current user.



## OpenAPI

````yaml /api-reference/openapi.json get /api/mcp_configs
openapi: 3.1.0
info:
  title: apowerb API
  description: REST API of the apowerb agentic framework (open-source edition).
  version: 0.1.2
  license:
    name: MIT
    url: https://github.com/apowerb/apowerb/blob/main/LICENSE
servers:
  - url: https://api.example.com
    description: Your apowerb instance
  - url: http://localhost:8000
    description: Local stack
security: []
paths:
  /api/mcp_configs:
    get:
      tags:
        - tools
      summary: List Mcp Configs
      description: List saved MCP server configurations for the current user.
      operationId: list_mcp_configs_api_mcp_configs_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````

## Related topics

- [Update Mcp Config](/api-reference/tools/update-mcp-config.md)
- [Save Mcp Config](/api-reference/tools/save-mcp-config.md)
- [List Tool Configs](/api-reference/tools_config/list-tool-configs.md)
- [List database tool configurations](/api-reference/bi-datasets/list-database-tool-configurations.md)
- [List user's connected Google Drive tool configurations](/api-reference/bi-upload/list-users-connected-google-drive-tool-configurations.md)
