# GetMCP ## Docs - [Call Logs](https://docs.getmcp.com/api-reference/analytics/calls.md): Retrieve paginated tool call logs with filtering options. - [Client Breakdown](https://docs.getmcp.com/api-reference/analytics/client-breakdown.md): Retrieve call analytics grouped by AI client type. - [Daily Analytics](https://docs.getmcp.com/api-reference/analytics/daily.md): Retrieve aggregated daily analytics data for charting and reporting. - [Analytics Overview](https://docs.getmcp.com/api-reference/analytics/overview.md): Get a summary of today's activity across all MCP servers. - [API Reference](https://docs.getmcp.com/api-reference/introduction.md): GetMCP REST API reference — manage servers, tools, resources, prompts, and analytics programmatically. - [initialize](https://docs.getmcp.com/api-reference/mcp-protocol/initialize.md): Negotiate the MCP protocol version and receive server capabilities. - [MCP Protocol Overview](https://docs.getmcp.com/api-reference/mcp-protocol/overview.md): Technical reference for the MCP JSON-RPC 2.0 protocol endpoints served by GetMCP. - [ping](https://docs.getmcp.com/api-reference/mcp-protocol/ping.md): Check server connectivity with a simple ping/pong exchange. - [prompts/get](https://docs.getmcp.com/api-reference/mcp-protocol/prompts-get.md): Retrieve a rendered prompt template with argument values substituted. - [prompts/list](https://docs.getmcp.com/api-reference/mcp-protocol/prompts-list.md): Retrieve the list of all prompt templates available on the MCP server. - [resources/list](https://docs.getmcp.com/api-reference/mcp-protocol/resources-list.md): Retrieve the list of all resources available on the MCP server. - [resources/read](https://docs.getmcp.com/api-reference/mcp-protocol/resources-read.md): Read the content of a specific resource by URI. - [tools/call](https://docs.getmcp.com/api-reference/mcp-protocol/tools-call.md): Execute a tool by name with the provided arguments. - [tools/list](https://docs.getmcp.com/api-reference/mcp-protocol/tools-list.md): Retrieve the list of all tools available on the MCP server. - [Create Prompt](https://docs.getmcp.com/api-reference/prompts/create.md): Create a new prompt template within a server. - [Delete Prompt](https://docs.getmcp.com/api-reference/prompts/delete.md): Permanently delete a prompt template. - [Get Prompt](https://docs.getmcp.com/api-reference/prompts/get.md): Retrieve a single prompt by ID. - [List Prompts](https://docs.getmcp.com/api-reference/prompts/list.md): Retrieve all prompts configured for a specific server. - [Update Prompt](https://docs.getmcp.com/api-reference/prompts/update.md): Partially update an existing prompt template. - [Create Resource](https://docs.getmcp.com/api-reference/resources/create.md): Create a new resource within a server. - [Delete Resource](https://docs.getmcp.com/api-reference/resources/delete.md): Permanently delete a resource. - [Get Resource](https://docs.getmcp.com/api-reference/resources/get.md): Retrieve a single resource by ID. - [List Resources](https://docs.getmcp.com/api-reference/resources/list.md): Retrieve all resources configured for a specific server. - [Update Resource](https://docs.getmcp.com/api-reference/resources/update.md): Partially update an existing resource. Only fields included in the request body are changed. - [Create Server](https://docs.getmcp.com/api-reference/servers/create.md): Create a new MCP server. - [Delete Server](https://docs.getmcp.com/api-reference/servers/delete.md): Permanently delete an MCP server and all its associated tools, resources, and prompts. - [Get Server](https://docs.getmcp.com/api-reference/servers/get.md): Retrieve a single MCP server by ID. - [List Servers](https://docs.getmcp.com/api-reference/servers/list.md): Retrieve a paginated list of all MCP servers. - [Toggle Server Status](https://docs.getmcp.com/api-reference/servers/toggle.md): Toggle a server between active and paused status. - [Update Server](https://docs.getmcp.com/api-reference/servers/update.md): Partially update an existing MCP server. - [Get Settings](https://docs.getmcp.com/api-reference/settings/get.md): Retrieve the current plugin settings. - [Update Settings](https://docs.getmcp.com/api-reference/settings/update.md): Partially update plugin settings. - [Create Tool](https://docs.getmcp.com/api-reference/tools/create.md): Create a new tool within a server. - [Delete Tool](https://docs.getmcp.com/api-reference/tools/delete.md): Permanently delete a tool. - [Duplicate Tool](https://docs.getmcp.com/api-reference/tools/duplicate.md): Create an exact copy of an existing tool within the same server. - [Get Tool](https://docs.getmcp.com/api-reference/tools/get.md): Retrieve a single tool by ID. - [Import from cURL](https://docs.getmcp.com/api-reference/tools/import-curl.md): Parse a cURL command and return the equivalent tool configuration. - [List Tools](https://docs.getmcp.com/api-reference/tools/list.md): Retrieve all tools configured for a specific server. - [Update Tool](https://docs.getmcp.com/api-reference/tools/update.md): Partially update an existing tool. - [Best Practices](https://docs.getmcp.com/docs/best-practices.md): How to configure GetMCP servers and tools for reliable, accurate AI interactions. - [Prompts](https://docs.getmcp.com/docs/concepts/prompts.md): Prompts are reusable prompt templates with typed arguments exposed via the MCP protocol. - [Resources](https://docs.getmcp.com/docs/concepts/resources.md): Resources expose data content to AI clients via the MCP resources/read method. - [Servers](https://docs.getmcp.com/docs/concepts/servers.md): MCP servers are the top-level containers for tools, resources, and prompts. - [Tools](https://docs.getmcp.com/docs/concepts/tools.md): Tools are callable functions that proxy HTTP requests to external APIs. - [FAQ](https://docs.getmcp.com/docs/faq.md): Frequently asked questions about GetMCP — for developers and API owners. - [Analytics & Monitoring](https://docs.getmcp.com/docs/guides/analytics.md): Monitor tool usage, performance metrics, and call logs in real time. - [Authentication](https://docs.getmcp.com/docs/guides/authentication.md): How authentication works in GetMCP — protecting your server and calling external APIs. - [Connecting AI Clients](https://docs.getmcp.com/docs/guides/connecting-clients.md): How to configure Claude Desktop, Claude Code, Cursor, Windsurf, VS Code, and OpenAI Playground. - [cURL Import](https://docs.getmcp.com/docs/guides/curl-import.md): Import existing API calls directly from cURL commands to auto-generate tool configurations. - [MCP Inspector](https://docs.getmcp.com/docs/guides/mcp-inspector.md): Debug and test your GetMCP server interactively before connecting any AI client. - [OpenAPI Import](https://docs.getmcp.com/docs/guides/openapi-import.md): Import all endpoints from an OpenAPI 3.x spec and generate tools automatically. - [Postman Import](https://docs.getmcp.com/docs/guides/postman-import.md): Import requests from a Postman 2.1 collection and generate tools automatically. - [Rate Limiting & Security](https://docs.getmcp.com/docs/guides/rate-limiting.md): Protect your MCP servers and downstream APIs with rate limiting and security controls. - [Swagger Import](https://docs.getmcp.com/docs/guides/swagger-import.md): Import all endpoints from a Swagger 2.0 spec and generate tools automatically. - [Using Templates](https://docs.getmcp.com/docs/guides/templates.md): Install pre-built tool collections for popular APIs in seconds — no configuration from scratch required. - [Troubleshooting](https://docs.getmcp.com/docs/guides/troubleshooting.md): Diagnose and fix the most common GetMCP issues — connection errors, tool failures, auth problems, and more. - [How GetMCP Works](https://docs.getmcp.com/docs/how-it-works.md): What happens under the hood — from an AI client request to an API response. - [Installation](https://docs.getmcp.com/docs/installation.md): Install and activate GetMCP on your WordPress site. - [Introduction](https://docs.getmcp.com/docs/introduction.md): Create fully functional MCP servers from WordPress — no code required. - [Quick Start](https://docs.getmcp.com/docs/quickstart.md): Create your first MCP server and connect an AI client in under 5 minutes. - [GetMCP for App Developers & SaaS](https://docs.getmcp.com/docs/use-cases/app-developers.md): Ship MCP support for your product in an afternoon — not a sprint. - [GetMCP for WordPress & WooCommerce](https://docs.getmcp.com/docs/use-cases/wordpress-woocommerce.md): Give AI clients direct access to your WordPress site — posts, products, orders, and custom data. ## OpenAPI Specs - [openapi](https://docs.getmcp.com/api-reference/openapi.json)