Claude Code plugin that connects Claude to Attention — an AI-powered conversational intelligence platform that records calls, transcribes, and analyzes sales conversations.
This plugin provides:
- MCP Server Connection — Connects to Attention's remote MCP server at
https://api.attention.tech/mcpwith OAuth 2.0 authentication - Skills — Agent skills for searching conversations and getting AI-powered insights
/plugin install attention
claude --plugin-dir ./path/to/attentionThen authenticate:
/mcp
Select "attention" and complete the OAuth flow in your browser.
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 for the full reference.
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
-
Local testing with
--plugin-dir:claude --plugin-dir ./attention
-
Verify plugin loaded:
/helpYou should see
attention:conversationsin the skills list. -
Authenticate:
/mcpSelect "attention" and complete OAuth in your browser.
-
Test tools:
Search for conversations from last week -
Validate plugin structure:
claude plugin validate ./attention
| 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 |