attention
Connect Claude to Attention — search sales conversations, view calls transcripts, get AI-powered insights, and chat with the Attention super
Open source Repository Open in the app JSON README (API)
About
Connect Claude to Attention — search sales conversations, view calls transcripts, get AI-powered insights, and chat with the Attention super agent.
Details
- Kind
- Plugins
- Topic
- No topic detected
- Publisher
- attentiontech
- Origin
- marketplace
- Category
- ferramentas
- Last push
- 2026-03-12T23:03:22Z
- Repository state
- ativo
- License
- MIT
- Added
- 2026-08-30 01:48:58
- Updated
- 2026-08-30 01:48:58
- Origin id
attentiontech/attention/attention
README
# Attention Plugin for Claude Claude Code plugin that connects Claude to [Attention](https://www.attention.com) — an AI-powered conversational intelligence platform that records calls, transcribes, and analyzes sales conversations. ## What's Included This plugin provides: - **MCP Server Connection** — Connects to Attention's remote MCP server at `https://api.attention.tech/mcp` with OAuth 2.0 authentication - **Skills** — Agent skills for searching conversations and getting AI-powered insights ## Installation ### From the Official Marketplace ``` /plugin install attention ``` ### Local Testing ```bash claude --plugin-dir ./path/to/attention ``` Then authenticate: ``` /mcp ``` Select "attention" and complete the OAuth flow in your browser. ## Available MCP Tools Tools are discovered dynamically from the server at connection time. Run `/mcp` in Claude Code to see all available tools, or check the [Attention MCP Server Docs](https://docs.attention.com/attention-mcp-server) for the full reference. ## Plugin Structure ``` attention/ ├── .claude-plugin/ │ └── plugin.json # Plugin manifest (name, version, metadata) ├── .mcp.json # MCP server configuration (remote HTTP) ├── skills/ │ └── conversations/ │ └── SKILL.md # Skill for searching, browsing, and analyzing conversations └── README.md ``` ## Testing 1. **Local testing with `--plugin-dir`**: ```bash claude --plugin-dir ./attention ``` 2. **Verify plugin loaded**: ``` /help ``` You should see `attention:conversations` in the skills list. 3. **Authenticate**: ``` /mcp ``` Select "attention" and complete OAuth in your browser. 4. **Test tools**: ``` Search for conversations from last week ``` 5. **Validate plugin structure**: ```bash claude plugin validate ./attention ``` ## Server Details | Property | Value | |----------|-------| | Server URL | `https://api.attention.tech/mcp` | | Transport | Streamable HTTP (stateless) | | Authentication | OAuth 2.0 with PKCE | | Scopes | `mcp:read`, `mcp:write` | | OAuth Discovery | `https://api.attention.tech/.well-known/oauth-authorization-server` | ## Documentation - [Attention MCP Server Docs](https://docs.attention.com/attention-mcp-server) - [Claude Code Plugins Docs](https://code.claude.com/docs/en/plugins) - [MCP Specification](https://modelcontextprotocol.io/)