We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dsouza-anush/browser-use-heroku'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
gpt-5-mini.py•630 B
"""
Simple try of the agent.
@dev You need to add OPENAI_API_KEY to your environment variables.
"""
import asyncio
from dotenv import load_dotenv
from lmnr import Laminar
from browser_use import Agent
from browser_use.llm import ChatOpenAI
load_dotenv()
Laminar.initialize()
# All the models are type safe from OpenAI in case you need a list of supported models
llm = ChatOpenAI(model='gpt-5-mini')
agent = Agent(
task='Find out which one is cooler: the monkey park or a dolphin tour in Tenerife?',
llm=llm,
)
async def main():
await agent.run(max_steps=20)
input('Press Enter to continue...')
asyncio.run(main())