Connect with MCP Inspector
MCP Inspector is a visual testing tool for MCP endpoints—similar to Postman for REST APIs. Use it to explore available tools, test queries, and verify your connection before integrating with other clients.
Prerequisites
Section titled “Prerequisites”- Node.js installed (download)
- Aembit API Token and MCP Service URL (see Connect to the MCP Server)
Launch MCP inspector
Section titled “Launch MCP inspector”Run the following command to download and launch MCP Inspector:
npx @modelcontextprotocol/inspectorYour browser opens automatically to the MCP Inspector interface.
Configure the connection
Section titled “Configure the connection”To connect MCP Inspector to the Aembit MCP Server, configure the transport type, endpoint URL, and authentication.
-
Set the transport type.
Select Streamable HTTP from the Transport Type dropdown.
-
Enter your MCP Service URL.
Paste your Aembit MCP Service URL:
Terminal window https://<tenantId>.mcp.useast2.aembit.io/mcp -
Set the connection type.
Select Via Proxy.
-
Configure authentication.
- Enable Custom Header.
- Set the header name to
Authorization. - Set the value to
Bearer <apiToken>(include “Bearer ” with a space before the token). Replace<apiToken>with your API Token from the Aembit Admin UI.
-
Click Connect.
Explore and test
Section titled “Explore and test”Once connected:
- Go to the Tools tab.
- Click List Tools to see available Aembit MCP tools.
- Select a tool (like
get_audit_logs) from the list. - Configure parameters in the right pane.
- Click Run Tool to execute the query and view results.
Example: Query audit logs
Section titled “Example: Query audit logs”-
Select the
get_audit_logstool. -
Set parameters:
{"filter": {"timestamp": { "gte": "2025-01-01T00:00:00Z" }},"pagination": { "limit": 10 }} -
Click Run Tool.
-
View the returned audit log entries in the response pane.
Next steps
Section titled “Next steps”- See the Prompt Library for example prompts and best practices.
- If you have connection issues, see Troubleshooting.