amp-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@amp-mcpread amp thread T-019fcd6f-9212-7238-aaf7-3f08ffee3c7f"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
amp-mcp
amp-mcp lets MCP-compatible coding harnesses read Amp threads referenced in commit messages, pull requests, and source code.
It exposes one tool, read_amp_thread. The server is deliberately read-only: it cannot create, continue, rename, share, archive, or delete threads.
How it works
The server runs locally over stdio and calls the authenticated Amp CLI:
MCP host → read_amp_thread → amp threads markdown → AmpIt does not read, copy, or store Amp credentials. A thread is available only when amp threads markdown <thread-id> allows the signed-in user to read it.
Related MCP server: reddit-mcp
Requirements
Node.js 20 or later
The Amp CLI installed and signed in
Verify Amp before configuring the MCP server:
amp --version
amp threads markdown T-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxxInstall from this checkout
npm install
npm run buildConfigure your coding harness to launch the built server. Most MCP hosts accept this shape:
{
"mcpServers": {
"amp-threads": {
"command": "node",
"args": ["/absolute/path/to/amp-mcp/dist/index.js"]
}
}
}If the host cannot find amp (common when a desktop app has a restricted PATH), set its absolute location:
{
"mcpServers": {
"amp-threads": {
"command": "node",
"args": ["/absolute/path/to/amp-mcp/dist/index.js"],
"env": {
"AMP_CLI_PATH": "/absolute/path/to/amp"
}
}
}
}Find that path with command -v amp on macOS/Linux or where amp on Windows.
After this package is published, hosts can instead launch it with npx:
{
"mcpServers": {
"amp-threads": {
"command": "npx",
"args": ["-y", "amp-mcp"]
}
}
}Tool
read_amp_thread
Reads a thread as Markdown. thread accepts all common reference forms:
T-019fcd6f-9212-7238-aaf7-3f08ffee3c7f@T-019fcd6f-9212-7238-aaf7-3f08ffee3c7fhttps://ampcode.com/threads/T-019fcd6f-9212-7238-aaf7-3f08ffee3c7f
Long threads are returned in pages. The optional arguments are:
Argument | Default | Description |
|
| Character offset at which to read; negative values count from the end |
|
| Maximum characters to return, up to |
|
| Set to |
| — | Truncate each tool result to this many characters |
|
| Set to |
Filtering is applied before offsets and character counts, so pagination offsets always refer to
the selected representation. When more content exists, the result gives the exact offset for
the next call. For example, offset: -100000 reads the final 100,000 characters without first
fetching the beginning of the thread.
Metadata mode returns the title, creation time, agent mode, readable status, user-turn count, original and filtered character lengths, and the latest non-tool-result conversation message. The Amp Markdown export does not expose live execution status, which is called out in the result.
Development
npm run checkTo exercise the server interactively with the MCP Inspector:
npx @modelcontextprotocol/inspector node dist/index.jsCopyright © Archestra AI
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- Alicense-qualityDmaintenanceA stdio MCP server for the official Threads API, enabling publishing, reading, moderation, insights, discovery, locations, and setup diagnostics.2MIT
- Alicense-qualityDmaintenanceEnables fetching and reading Reddit content such as posts, comments, and subreddit listings via the MCP protocol.36MIT
- Alicense-qualityDmaintenanceProvides a standardized interface for interacting with Markitdown's tools and services through a unified API, compatible with MCP-compliant services.MIT
- Alicense-qualityDmaintenanceProvides read-only access to Reddit through 8 tools for searching, browsing, and retrieving posts, comments, and user data, compatible with any MCP client.MIT
Related MCP Connectors
MCP server for AgentDocs (agentdocs.eu): read, search, write, comment on & share Markdown docs.
Markdown utilities MCP.
Reddit MCP — public Reddit data via JSON endpoints (no auth required)
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vadim0x60/amp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server