Loading...
npx @modelcontextprotocol/inspectorGET /admin/resources/{type}/{id}Retrieves a specific resource of a given type by its ID.
Read-only operation, no modification of system state.
POST /admin/resources/{type}/{id}Creates a new resource of a specified type with a given ID.
Creates new resources, potentially affecting system behavior.
PUT /admin/resources/{type}/{id}Updates an existing resource of a specified type with a given ID.
Modifies existing resources, potentially disrupting services.
DELETE /admin/resources/{type}/{id}Deletes a resource of a specified type with a given ID.
Destructive operation that removes resources from the system.
POST /admin/reload/configReloads the full configuration from a file, updating the service's behavior.
Can drastically alter system behavior based on the new configuration.
The MCP Access Point is relatively safe for read-only operations. However, the Admin API introduces risks due to its ability to modify configurations. Secure deployment requires careful management of the API key and thorough validation of configuration changes.