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

@joshuanode/n8n-nodes-teamsbot

v0.0.3

Published

n8n community nodes for Microsoft Teams Bot Framework (single-tenant ready).

Readme

n8n-nodes-teamsbot

This community node package adds Microsoft Teams Bot Framework support to n8n with a focus on modern single-tenant bot setups.

It includes:

  • Microsoft Teams Bot Trigger: receives incoming Bot Framework activities from Teams
  • Microsoft Teams Bot: action node for activity, adaptive card, attachment, conversation, proactive, and reaction APIs

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

Microsoft Teams Bot Trigger

  • Trigger on activity types:
    • conversationUpdate
    • event
    • installationUpdate
    • message
    • messageDelete
    • messageReaction
    • messageUpdate
  • Optional behaviors:
    • Command router (prefix + optional command definition JSON)
    • Configurable webhook response mode (onReceived, lastNode, responseNode)
    • Conversation reference capture for proactive messaging
    • Debug output
    • Dedupe window controls
    • Ignore bot-originated activities
    • Include raw activity in output
    • Validate channel endorsements
    • Verify JWT signatures from Bot Framework OpenID/JWKS endpoints

Microsoft Teams Bot

  • Activity operations:
    • Send Activity
    • Reply To Activity
    • Update Activity
    • Delete Activity
    • Send Typing Indicator
  • Adaptive card operations:
    • Send Adaptive Card
    • Reply With Adaptive Card
    • Update Adaptive Card
  • Attachment operations:
    • Send File Attachment
    • Send Inline Attachment
  • Conversation operations:
    • Create Conversation
    • Create Direct Conversation
    • Get Conversation Details
    • Get Conversation Member
    • Get Conversation Members
    • Get Paged Conversation Members
  • Proactive operations:
    • List References
    • Get Reference
    • Upsert Reference
    • Delete Reference
    • Send Proactive Message
  • Reaction operations:
    • Add Reaction
    • Remove Reaction
  • Helper features:
    • Mention entity helper (auto-mention sender or explicit mention fields)
    • Retry count + retry delay controls
    • Debug output for attempts and request metadata
    • Output mode control (Pass Through, Merge, Response Only) for downstream compatibility

Credentials

Create a Microsoft Teams Bot API credential with:

  • Microsoft App ID
  • Microsoft App Secret
  • Tenant ID (required for single-tenant token acquisition)

This package requests tokens from:

https://login.microsoftonline.com/<tenant-id>/oauth2/v2.0/token

with scope:

https://api.botframework.com/.default

Usage

Minimal inbound -> outbound workflow

  1. Add Microsoft Teams Bot Trigger.
  2. Configure your Bot Framework messaging endpoint to the trigger webhook URL.
  3. Add a Microsoft Teams Bot node after the trigger.
  4. Use operation Reply To Activity or Send Activity.
  5. Map:
    • Service URL -> {{$json.botContext.serviceUrl}}
    • Conversation ID -> {{$json.botContext.conversationId}}
    • Activity ID (if replying/updating/deleting) -> {{$json.botContext.activityId}}

Endpoint reminder

The trigger webhook path is:

<your-n8n-webhook-base>/<workflow-webhook-path>/webhook

Use the exact production URL when configuring the bot messaging endpoint in Azure.

Resources

Version history

  • 0.0.3: Added output mode control on Microsoft Teams Bot action node, defaulting to pass-through output so trigger fields (for example botContext) are preserved.
  • 0.0.2: Added command routing, adaptive card helpers, mention helpers, proactive operations, attachment helpers, conversation utilities, reaction operations, and retry/debug controls.
  • 0.0.1: Initial release with trigger + action nodes and single-tenant auth model.