- MCP Inspector connects to your Refold MCP server before you wire it into an agent, lists its tools, and lets you call them with any input.
- MCP Logs is the audit panel in the Refold dashboard. It shows every tool call your agent made, the exact input it sent, and what came back.
MCP Inspector
[MCP Inspector is the Model Context Protocol project’s open-source debugger for any MCP server.Connect to your server
Set the transport
In the server connection pane, select Streamable HTTP from the transport dropdown.
Paste your Server URL
Enter your Refold Server URL, copied from the server’s setup page in the dashboard. The copied URL already includes your host, token, and server ID, so the
<domain>, <token>, and <server_id> placeholders below only show the structure. Refold accepts the token two ways; use whichever is easier in the Inspector.Panels
| Panel | What it shows |
|---|---|
| Tools | Every MCP tool the server exposes with its JSON schema. Click any tool to fill in arguments and run it. |
| Resources | MCP resources (empty for Refold servers). |
| Prompts | MCP prompts (empty for Refold servers). |
| Notifications | Server logs and raw JSON-RPC traffic. |
Call a tool
In the Tools panel, click the tool you want to test. The Inspector renders an input form from the tool’s JSON schema. Fill in the fields and click Run Tool. For agent mode servers, the typical test sequence is:- Run
RESOLVE_ACTIONSwithintegration_query: ["List Contacts Salesforce"] - Copy the returned
slug,identifier,type, andjson_schema - Run
EXECUTE_ACTION, passingslugasapplication_slug,identifierasaction_id, the sametype, and aninput_payloadthat matchesjson_schema
The Inspector shows no tools, or not the tools you expect
If the Inspector’s Tools panel is empty or lists tools you didn’t expect, the cause is almost always the server’s configuration, not the connection. Check two settings on the MCP server in the dashboard:- Mode. A server runs in one mode at a time. In direct mode the Inspector lists one tool per configured action or workflow (named like
salesforce_list_contacts_action). In agent mode it lists two meta-tools,RESOLVE_ACTIONSandEXECUTE_ACTION. If you see the meta-tools but expected per-action tools, or the reverse, the server is in the other mode. Toggle Agent Mode to switch. - Enabled actions and skills. Only the apps and actions you added to the server appear as tools, so add any missing action on the server’s Applications tab. The skill tools
LOAD_SKILLandGET_KNOWLEDGE_INDEX(which lists the server’s skills) appear only when Retrieve Skill is on, in either mode.
Command-line usage
For scripting or smoke-testing without the UI:CLI: list tools
CLI: call a tool
--header:
CLI: token in a header
MCP Logs
Once your agent is running, every tool call is captured in Maintain > MCP Logs. See MCP Logs for the full field reference, filters, and compliance details.A tool call returned nothing useful
Open MCP Logs and filter by linked account
Go to Maintain > MCP Logs and filter by your agent’s linked account.
Check the Status field
Open the detail panel:
| Status | What it means |
|---|---|
success | Refold completed the call. If the result still looks wrong, the problem is in how the agent interpreted the response, so compare the response payload to what the agent told the user. |
validation_error | The agent sent input that didn’t match the tool’s schema, or referenced an app or action that isn’t on the server. The message the agent received explains what failed. |
execution_error | Refold couldn’t reach the downstream service. The agent and the detail panel both show the same user-facing message; the full upstream error is not exposed. |
pending | The call started but did not record completion. |
Downstream errors from third-party apps are never surfaced verbatim. The agent and the detail panel both show the same clean, user-facing message; the full upstream error is not exposed.
Trace a full agent conversation
Filter MCP Logs by Session ID to see every tool call from a single agent session in chronological order. This is the fastest way to understand what an agent actually did when it called several tools in sequence, for exampleGET_KNOWLEDGE_INDEX → LOAD_SKILL → RESOLVE_ACTIONS → EXECUTE_ACTION × 3.
See also
- MCP Logs: full field reference, filters, and compliance details
- Tools: request and response shapes for every tool
- Connect from agent code: wiring the Server URL into your agent
- Authentication: token model and per-user Server URLs