teams-api 1.2.0 → 1.2.1
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 +22 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -41,6 +41,8 @@ The quickest way to get started is to click one of the install badges above, or
|
|
|
41
41
|
|
|
42
42
|
**Option 2 — CLI:**
|
|
43
43
|
|
|
44
|
+
macOS / Linux:
|
|
45
|
+
|
|
44
46
|
```bash
|
|
45
47
|
# VS Code
|
|
46
48
|
code --add-mcp '{"name":"teams","command":"npx","args":["-y","-p","teams-api@latest","teams-api-mcp"],"env":{"TEAMS_LOGIN":"true"}}'
|
|
@@ -49,6 +51,26 @@ code --add-mcp '{"name":"teams","command":"npx","args":["-y","-p","teams-api@lat
|
|
|
49
51
|
code-insiders --add-mcp '{"name":"teams","command":"npx","args":["-y","-p","teams-api@latest","teams-api-mcp"],"env":{"TEAMS_LOGIN":"true"}}'
|
|
50
52
|
```
|
|
51
53
|
|
|
54
|
+
Windows (PowerShell):
|
|
55
|
+
|
|
56
|
+
```powershell
|
|
57
|
+
# VS Code
|
|
58
|
+
code --add-mcp '{"name":"teams","command":"npx","args":["-y","-p","teams-api@latest","teams-api-mcp"],"env":{"TEAMS_LOGIN":"true"}}'
|
|
59
|
+
|
|
60
|
+
# VS Code Insiders
|
|
61
|
+
code-insiders --add-mcp '{"name":"teams","command":"npx","args":["-y","-p","teams-api@latest","teams-api-mcp"],"env":{"TEAMS_LOGIN":"true"}}'
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
Windows (CMD):
|
|
65
|
+
|
|
66
|
+
```cmd
|
|
67
|
+
rem VS Code
|
|
68
|
+
code --add-mcp "{\"name\":\"teams\",\"command\":\"npx\",\"args\":[\"-y\",\"-p\",\"teams-api@latest\",\"teams-api-mcp\"],\"env\":{\"TEAMS_LOGIN\":\"true\"}}"
|
|
69
|
+
|
|
70
|
+
rem VS Code Insiders
|
|
71
|
+
code-insiders --add-mcp "{\"name\":\"teams\",\"command\":\"npx\",\"args\":[\"-y\",\"-p\",\"teams-api@latest\",\"teams-api-mcp\"],\"env\":{\"TEAMS_LOGIN\":\"true\"}}"
|
|
72
|
+
```
|
|
73
|
+
|
|
52
74
|
**Option 3 — Manual config:**
|
|
53
75
|
|
|
54
76
|
Add to your VS Code MCP config (`.vscode/mcp.json` or User Settings):
|
package/package.json
CHANGED