Sandbox Testing Walk-Through
MCP Observability
Login to your BlueRock Sandbox instance
Gemini is preloaded on the instance as an example. Run the gemini CLI command::
geminiYou may need to start the MCP servers first:
cd /opt/bluerock/trex/servicenow-mcpsource .venv/bin/activateservicenow-mcp-sse --host=127.0.0.1 --port=8001 &Open a second terminal session.
cd /opt/bluerock/trex/fastmcpsource .venv/bin/activatepython my_server.py &Run
/mcpin the gemini CLI to view all available tools

The following tools will display:

Execute the list_users tool for servicenow:


Execute the mongo_list_databases tool for FastMCP:

Now let’s check the CloudWatch logs in AWS. Navigate to CloudWatch and select your Log group

Select your Log stream:

Search for python_mcp in the search bar. This will list out all of the MCP calls and connections:

Now search for { $.body.message.method = "initialize" }. This is the initial connection and MCP handshake between the client and server:

Next let’s list all of the tools by searching for { $.body.message.result.tools[0].name = "list_tool_packages" }:

Next search “tools/call”. Make sure to use the quotes in the search. This will now show the specific tool calls used by the MCP Client:

Last updated