---
title: "Tamloot — MCP Server for Developers"
description: "Guides, tutorials, and developer resources for using Tamloot"
canonical: "https://tamloot.cc/en/docs/mcp-server"
---

# MCP Server for Developers

Tamloot runs an OAuth-secured [MCP (Model Context Protocol)](https://modelcontextprotocol.io) server, so you can connect your own AI tools — Claude, ChatGPT, Cursor, and other MCP-compatible clients — directly to your Tamloot data.

Once connected, your AI tool can look up contacts, search sessions and notes, and pull transcripts on your behalf, using the same account permissions you already have in Tamloot.

## Connect

Add Tamloot as a remote MCP server in your client's configuration:

```json
{
  "mcpServers": {
    "tamloot": {
      "type": "http",
      "url": "https://mcp.tamloot.cc/mcp"
    }
  }
}
```

The first time you connect, your AI client opens a browser window and asks you to log in with your Tamloot account. There's no API key to generate or copy — the server uses standard OAuth 2.1, and your client handles the login automatically.

---

## What your AI tool can do

The server is **read-only** — a connected AI tool can look things up, but it can never create, edit, or delete anything in your Tamloot account.

| Tool | What it does |
|------|---------------|
| Find a contact | Look up a contact by name, email, phone, or ID — returns their notes and recent/upcoming sessions |
| Search sessions | Search your recorded sessions by keyword, contact, or date range |
| Get a session | Retrieve the full details and notes for one session |
| Get a transcript | Retrieve the transcript of a recorded session |
| Search notes | Search across all your session and contact notes by keyword |

---

## Data access & privacy

Every request runs under your own account's permissions — a connected AI tool only ever sees your own contacts, sessions, and notes, never another user's data. See our [Privacy Policy](/privacy) for how we handle data more broadly.

---

## Which clients work with this

Any MCP client that supports Streamable HTTP transport and OAuth 2.1 works, including:

- Claude Desktop and Claude Code
- Cursor
- ChatGPT, via its MCP connector support

If your client doesn't support OAuth-secured remote servers yet, check its own documentation for how to add a remote MCP server — the endpoint above (`https://mcp.tamloot.cc/mcp`) and the login flow stay the same.

## Where to look next

- [Home](https://tamloot.cc/en)
- [Pricing](https://tamloot.cc/en/pricing) — also as markdown at [/pricing.md](https://tamloot.cc/pricing.md)
- [Documentation](https://tamloot.cc/en/docs)
- [Developer resources](https://tamloot.cc/en/developers)
- [Public API documentation](https://tamloot.cc/en/docs/api)
- [MCP server setup](https://tamloot.cc/en/docs/mcp-server)
- [Agent auth guide](https://tamloot.cc/auth.md)
- [llms.txt](https://tamloot.cc/llms.txt)
- [OpenAPI description](https://tamloot.cc/openapi.json)
- [API catalog](https://tamloot.cc/.well-known/api-catalog)
- [Sitemap](https://tamloot.cc/sitemaps/sitemap.xml)
