Course Test
Please answer the questions below to complete the test.
Question 1
Which two properties of an MCP tool definition are most important for the agent to correctly decide when to invoke it?
Select all that apply
Tool name
Tool description
The HTTP method of the backing API endpoint
The MIME type of the response
Question 2
Why should read-only MCP tools be implemented before write tools when building a Meshery MCP server?
Select one answer
Read-only tools have higher performance than write tools
They allow full agent integration testing without the risk of unintended state mutations
The MCP specification requires read tools to be registered before write tools
Meshery's API does not expose write endpoints over MCP
Question 3
What command would you run to verify that a Meshery instance is reachable and healthy before testing MCP tool calls against it?
Select one answer
mesheryctl system start
mesheryctl system check
mesheryctl perf apply
mesheryctl design import -f designs/observability-stack.yaml -s "Kubernetes Manifest"
Question 4
Which URI scheme is used to address Meshery MCP resources for cluster state observed by MeshSync?
Type your answer below
Question 5
An agent calls list_designs and receives output containing full YAML content for every design in the page, causing a context window overflow. What is the correct fix?
Select one answer
Reduce pageSize to 1 so only one design is returned at a time
Return only minimal fields (id, name, updatedAt) in list responses and expose full content through a separate get_design tool
Compress the YAML content before returning it
Switch from the REST API to the GraphQL API for list queries
Question 6
Which of the following actions should be completed before connecting an agent to your MCP server for the first time? Select all that apply.
Select all that apply
Validate all tool schemas in the MCP Inspector
Invoke each tool directly and verify output shapes and error handling
Deploy the MCP server to a production Kubernetes cluster
Run the smoke test checklist confirming Meshery is healthy and tools return valid responses
close