teams-api 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -0
- package/SKILL.md +5 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,6 +25,21 @@ Designed for autonomous AI agents that need to interact with Teams: read message
|
|
|
25
25
|
|
|
26
26
|
The quickest way to get started is to click one of the install badges above, or follow the instructions for your editor below.
|
|
27
27
|
|
|
28
|
+
#### Install as an agent skill
|
|
29
|
+
|
|
30
|
+
The [SKILL.md](SKILL.md) teaches AI agents _how_ to use the MCP tools (when to call which tool, typical workflows, parameter guidance). Install it with the [`skills` CLI](https://github.com/vercel-labs/skills):
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
npx -y skills add Maxim-Mazurok/teams-api
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
This copies the skill into your agent's skills directory (Claude Code, Cursor, GitHub Copilot, Codex, and [many more](https://www.npmjs.com/package/skills#supported-agents)).
|
|
37
|
+
|
|
38
|
+
> [!NOTE]
|
|
39
|
+
> The skill is optional — the MCP tools work without it. The skill just gives agents extra context about when and how to use each tool.
|
|
40
|
+
|
|
41
|
+
#### Editor-specific instructions
|
|
42
|
+
|
|
28
43
|
<details>
|
|
29
44
|
<summary><strong>VS Code / VS Code Insiders</strong></summary>
|
|
30
45
|
|
package/SKILL.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: teams-api
|
|
3
|
+
description: Interact with Microsoft Teams — read messages, send replies, list conversations, search people, and look up team members. Use when an AI agent needs to participate in Teams workflows.
|
|
4
|
+
---
|
|
5
|
+
|
|
1
6
|
# teams-api MCP Skill
|
|
2
7
|
|
|
3
8
|
Use this skill when you need to interact with Microsoft Teams — reading messages, sending replies, listing conversations, or looking up team members.
|
package/package.json
CHANGED