Simple Tool

Loading "Simple Tool"
πŸ‘¨β€πŸ’Ό Let's get your MCP server ready to support tools! In this step, you'll:
  • Declare the tools capability on your server.
  • Register a simple tool named add that always returns the sum of 1 and 2 (hardcoded).
This is your first step toward making your server interactive and extensible. No need to handle dynamic input yetβ€”just get the tool registered and returning a static result.
As a reminder, here's an example of a tool:
server.registerTool(
	'hello',
	{
		title: 'Hello',
		description: 'Say hello',
	},
	async () => {
		return {
			content: [{ type: 'text', text: 'Hello, world!' }],
		}
	},
)

Please set the playground first

Loading "Simple Tool"
Loading "Simple Tool"

Access Denied

You must login or register for the workshop to view and run the tests.

Check out this video to see how the test tab works.