MCP Server
Give your AI agents access to the Notte MCP server
Add the Notte MCP#
Create a Notte API key and connect your client to the hosted MCP endpoint:
https://api.notte.cc/mcp/Claude Code — run this command and verify the connection with claude mcp list:
claude mcp add --transport http notte https://api.notte.cc/mcp/ --header "Authorization: Bearer $NOTTE_API_KEY"Codex — add this to ~/.codex/config.toml or your project's .codex/config.toml:
[mcp_servers.notte]
url = "https://api.notte.cc/mcp/"
bearer_token_env_var = "NOTTE_API_KEY"Cursor — open your MCP settings and add:
{
"mcpServers": {
"notte": {
"url": "https://api.notte.cc/mcp/",
"headers": {
"Authorization": "Bearer ${env:NOTTE_API_KEY}"
}
}
}
}Claude Desktop — add this to your Claude Desktop configuration:
{
"mcpServers": {
"notte": {
"command": "npx",
"args": [
"mcp-remote",
"https://api.notte.cc/mcp/",
"--header",
"Authorization:${AUTH_HEADER}"
],
"env": {
"AUTH_HEADER": "Bearer <your-notte-api-key>"
}
}
}
}Any other MCP client — add this to your MCP configuration:
{
"mcpServers": {
"notte": {
"url": "https://api.notte.cc/mcp/",
"headers": {
"Authorization": "Bearer <your-notte-api-key>"
}
}
}
}Post setup verify#
Run this prompt in your assistant to check that setup is all good:
Use the Notte MCP server to verify that it is correctly configured. Start a new browser session, goto apple.com, open the live viewer, extract the navbar into structured JSON. Report to user and close all resources. Also report a concise table breakdown of main MCP endpoints with highlevel description to educate user/agent.Notte Documentation MCP#
You can also configure the Notte Docs MCP to give your coding agent current documentation while it helps you build. It needs no API key.
https://docs.notte.cc/mcpClaude Code:
claude mcp add --transport http notte-docs https://docs.notte.cc/mcpCodex — add this to ~/.codex/config.toml:
[mcp_servers.notte_docs]
url = "https://docs.notte.cc/mcp"Cursor — open your MCP settings and add:
{
"mcpServers": {
"notte-docs": {
"url": "https://docs.notte.cc/mcp"
}
}
}Claude Desktop:
{
"mcpServers": {
"notte-docs": {
"command": "npx",
"args": [
"mcp-remote",
"https://docs.notte.cc/mcp"
]
}
}
}