Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mcp-use.com/llms.txt

Use this file to discover all available pages before exploring further.

singleton

function singleton

A decorator that implements the singleton pattern for a class.This decorator ensures that only one instance of a class is ever created. Subsequent attempts to create a new instance will return the existing one.Usage: @singleton class MySingletonClass: def init(self):

… initialization …

pass
from mcp_use.utils import singleton
Parameters
cls
required
The class to be decorated.
Signature
def singleton(cls):