npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@assemblyline-agents/attio

v10.3.2

Published

Official Assembly Line connection plugin for Attio's hosted MCP server.

Readme

@assemblyline-agents/attio

Official Assembly Line connection plugin for Attio's hosted Streamable HTTP MCP server at https://mcp.attio.com/mcp. It exposes Attio's reviewed CRM, activity-intelligence, and reporting tools through user-authorized OAuth.

Setup

Attio uses OAuth Authorization Code + PKCE and supports dynamic client registration. Register one public client for the Assembly Line deployment:

curl -X POST https://app.attio.com/oauth/register \
  -H 'content-type: application/json' \
  -d '{
    "client_name": "Assembly Line",
    "redirect_uris": ["https://YOUR-AGENT-HOST/assembly-line/connections/callback"],
    "grant_types": ["authorization_code", "refresh_token"],
    "response_types": ["code"],
    "token_endpoint_auth_method": "none"
  }'

Store the returned client_id as ATTIO_MCP_CLIENT_ID. Set ATTIO_MCP_REDIRECT_URI only when the registered callback differs from Assembly Line's normal connection callback URL. ATTIO_MCP_URL optionally overrides the hosted endpoint.

Add the connection to an agent:

assembly-line add attio agent

The default connection is user-scoped: each person authorizes their own Attio account, and Attio enforces that person's workspace permissions. Gate named write actions through plugins.attio.connections.attio.approval.

When an agent should operate as one company service identity, authorize a dedicated Attio member once through the protected operator connection flow and store the grant at workspace scope:

capabilities:
  attio:
    connections:
      attio:
        subject: workspace
        required: true

Do not let an arbitrary end user establish that shared grant. Preauthorize the dedicated account before opening the agent to users:

GET /assembly-line/connections/authorize?connection=attio

That route requires the runtime's agent-control authentication. The returned URL opens Attio's consent screen; the callback stores the access and refresh tokens in Assembly Line's host-side grant store. User-scoped connections can also authorize lazily: the invoking run parks, sends the consent link to the user, and resumes after the callback.

The reviewed MCP surface includes records and objects, lists and list entries, comments, notes, tasks, meetings, call recordings and transcripts, email search and content, workspace members and teams, basic reports, and read-only Particle SQL where the Attio plan supports it. It does not expose every REST administration operation, webhook management, file upload, or arbitrary schema mutation.

License

MIT