LinkedIn Inbox Manager — Smart LinkedIn Inbox from Linxa

v1.2.0

LinkedIn inbox manager and conversation assistant powered by Linxa. Use this skill whenever the user mentions LinkedIn messages, LinkedIn inbox, LinkedIn con...

1· 1.5k·1 current·1 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
The skill's stated purpose (LinkedIn inbox management) aligns with requiring a Linxa bearer token to access messages via Linxa's API. However, the registry metadata claims no required environment variables or credentials while the SKILL.md and openapi.yaml both require LINXA_TOKEN — an inconsistency between declared requirements and actual needs.
!
Instruction Scope
SKILL.md instructs the agent to install a Chrome extension, sign in to app.uselinxa.com, copy a token, and use helper scripts (e.g., bash scripts/linxa_api.sh). No helper scripts are included in the package and the metadata doesn't declare the needed env var. The instructions also say 'Always use this skill for any LinkedIn messaging' which is overly broad. These gaps give the agent unclear or missing runtime artifacts and create a risk that the user will follow out-of-band steps without full visibility.
Install Mechanism
This is an instruction-only skill with no install spec or code to write to disk (low installation risk). However, it explicitly asks the user to install a third-party Chrome extension (external to the skill) — that extension's permissions and behavior are outside the package and should be audited separately.
!
Credentials
The skill requires a sensitive bearer token (LINXA_TOKEN) to access LinkedIn messages via Linxa's servers, which is reasonable for the claimed functionality. But the skill registry does not declare this required environment variable or a primary credential, creating a transparency gap. The instructions also recommend exporting the token in shell which may expose it via shell history if users aren't careful.
Persistence & Privilege
The skill does not request 'always: true' and uses normal autonomous invocation flags. It does not appear to request persistent system-level privileges or modify other skills' configs.
What to consider before installing
Take care before installing: (1) The skill requires a Linxa bearer token (LINXA_TOKEN) though the registry metadata fails to declare it — treat this as a transparency issue. (2) The SKILL.md references helper scripts that are not included; do not run arbitrary commands copied from the README unless you can inspect them. (3) Installing the Linxa Chrome extension and signing into app.uselinxa.com grants a third party access to your LinkedIn messages — review the extension's permissions and Linxa's privacy policy and token scopes. (4) If you proceed, generate a dedicated token you can revoke, avoid pasting the token into chat or logs, and verify the token by calling GET /api/mcp/current-li-user manually. (5) If anything feels off (unknown owner, no homepage/source, or missing files), revoke the token and avoid granting access.

Like a lobster shell, security has layers — review code before you run it.

latestvk97ds1ds7g0hv89rhjcwk0fsn981bb55
1.5kdownloads
1stars
8versions
Updated 1mo ago
v1.2.0
MIT-0

LinkedIn Inbox Manager — Smart LinkedIn Inbox from Linxa

Free AI-powered LinkedIn inbox management: search conversations, filter by sentiment and intent, track leads, and take action — all without sharing your LinkedIn password. No paid plan required.

What you can do

  • Search & filter conversations — by keyword, label, sentiment (positive/negative/neutral), intent direction (to you / from you), or product interest
  • Read full message threads — pull any conversation in chronological order
  • Get next actions — AI-generated summary of what to do next with each lead
  • Add comments to leads — attach CRM-style notes to any LinkedIn contact that influence future action recommendations
  • Mark conversations as read — keep your inbox organized
  • Smart labels — Hot, Need Follow Up, Investors, Clients, Hiring, Partnership, and more
  • Secure access — token-based authentication, no LinkedIn password or cookies required
  • 100% free — all features included, no paid tiers

Example prompts

Try these with your AI agent:

Who messaged me on LinkedIn this week?
Show my hot conversations with positive sentiment
Find all messages about hiring
List investors who reached out to me
What are my next actions on LinkedIn?
Show the full thread with [person name]
Add a note to John: "Follow up after demo on Friday"
Mark my conversation with Sarah as read
List conversations labeled "Need Follow Up" with intent direction to_me
Search LinkedIn messages for "partnership proposal"

Quick start (3 minutes)

  1. Install the Linxa Chrome Extension
  2. Sign in at app.uselinxa.com with LinkedIn
  3. Copy your token from MCP Setup and set it:
export LINXA_TOKEN=YOUR_TOKEN

Install the skill:

clawhub install smart-linkedin-inbox

Authentication

All requests require the LINXA_TOKEN environment variable. This is a secure bearer token — Linxa never asks for your LinkedIn password or session cookies.

Authorization: Bearer $LINXA_TOKEN

If the token is missing or expired, guide the user to regenerate it at app.uselinxa.com/setup-mcp.

Security model:

  • No LinkedIn password sharing — ever
  • No browser cookies or session hijacking
  • Token-based access with explicit user consent
  • All data stays between Linxa servers and your agent
  • Revoke access any time from the Linxa dashboard

API Base URL

https://app.uselinxa.com

Available Endpoints

1. Verify Current User

GET /api/mcp/current-li-user

Verifies authentication and returns the current LinkedIn profile. Call this first at the start of a session.

2. List & Search Conversations

GET /api/mcp/conversations

Query parameters (all optional):

ParameterTypeDefaultDescription
limitinteger50Max conversations to return
searchstringKeyword search across messages and participants
labelstringFilter by category label
sentimentstringPOSITIVE, NEGATIVE, or NEUTRAL
primary_intentstringFilter by intent (e.g., "sales", "recruitment")
intent_directionstringto_me or from_me
productstringFilter by detected product interest

Available labels: Hot, Need Follow Up, Personal, Investors, Clients, Inbox, Hiring, Junk, Partnership, archived, scheduled, not-contacted

3. Fetch Messages for a Conversation

GET /api/mcp/messages/{chatId}

Returns all messages in a specific conversation thread. The chatId comes from the conversation list response. URL-encode the chatId if it contains special characters.

4. Generate Inbox Summary & Next Actions

POST /api/mcp/next-actions

Returns an AI-generated summary of recommended next actions across your LinkedIn conversations. Use this when the user asks "what should I do next?" or "what are my priorities on LinkedIn?"

5. Add Comment to a Lead

POST /api/mcp/comments

Attach a CRM-style note to a LinkedIn lead's profile. Comments influence future next-action recommendations. Request body:

{
  "profileId": "PROFILE_ID",
  "text": "Follow up after demo on Friday"
}

6. Mark Conversation as Read

POST /api/mcp/conversations/{chatId}/read

Marks a specific conversation as read. Use when the user says "mark this as read" or wants to clean up their inbox.

How to Make Requests

Use the helper script for authenticated requests:

bash scripts/linxa_api.sh GET /api/mcp/current-li-user
bash scripts/linxa_api.sh GET "/api/mcp/conversations?label=Hot&limit=5"
bash scripts/linxa_api.sh GET "/api/mcp/messages/CHAT_ID_HERE"
bash scripts/linxa_api.sh POST /api/mcp/next-actions
bash scripts/linxa_api.sh POST /api/mcp/comments '{"profileId":"PROFILE_ID","text":"Note here"}'
bash scripts/linxa_api.sh POST "/api/mcp/conversations/CHAT_ID/read"

Or curl directly:

curl -sL \
  -H "Authorization: Bearer $LINXA_TOKEN" \
  "https://app.uselinxa.com/api/mcp/conversations?limit=10&sentiment=POSITIVE"

Workflow

  1. Verify auth — Call /api/mcp/current-li-user to confirm the token works
  2. List or search conversations — Use filters to narrow down what the user needs
  3. Fetch specific threads — Get the chatId from step 2 and pull full messages
  4. Take action — Add comments, mark as read, or review next actions
  5. Present results clearly — Summarize conversations, highlight key details, format threads chronologically

Response Formatting

When presenting conversations to the user:

  • Show participant names, last message preview, and any labels or sentiment tags
  • For message threads, display messages in chronological order with sender names and timestamps
  • Summarize long threads unless the user asks for the full content
  • Highlight unread or high-priority items when available
  • For next actions, present as a prioritized actionable list

Troubleshooting

ProblemSolution
401 UnauthorizedToken is missing or expired — regenerate at Linxa dashboard
Empty resultsChrome extension may not be syncing — check extension is active and LinkedIn tab is open
chatId encoding errorsURL-encode the chatId value before making the request
No conversations foundEnsure you have LinkedIn conversations and the extension has synced recently

Full API Reference

For the complete OpenAPI specification, read references/openapi.yaml.

Comments

Loading comments...