Skip to Content
AI Agents with MCP
book

AI Agents with MCP

by Kyle Stratis
October 2026
Intermediate to advanced
328 pages
8h 57m
English
O'Reilly Media, Inc.
Content preview from AI Agents with MCP

Appendix. A Refresher on Decorators

Decorators are a bit of syntactic sugar in Python that allow you to modify the behavior of a function without changing the code of the function itself. They work because functions are first-class objects in Python, which means, among other things, that you can pass functions as arguments to other functions. So when you decorate a function, the decorated function is passed as an argument to the decorator function, which then will call the decorated function at some point during the execution of the rest of its logic.

This is done by defining a wrapper() or handler() function within the body of the decorator function definition (the name of the inner function doesn’t matter, these are just common conventions) that does its logic and calls the function that it was passed, and that inner function is returned by the outer (decorator) function.

In the MCP Python SDK, the MCPServer API’s tool() decorator is a great example of this. Prior to v2, the low-level server also used decorators like @server.call_tool() to wrap your tool functions in nested handler functions and add it to a handler dictionary, but now the low-level server constructor takes handler functions directly as parameters.

Now, the high-level server API’s tool decorator has only a single inner function called decorator(), and all it does is take a function as an argument and then calls add_tool() on the server instance, which adds the tool definition (as a Tool object) to the server’s ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

AI Agents: The Definitive Guide

AI Agents: The Definitive Guide

Nicole Koenigstein
AI Agents in Action

AI Agents in Action

Micheal Lanham
AI Agents in Action

AI Agents in Action

Micheal Lanham

Publisher Resources

ISBN: 9798341639546Errata Page