personaljarvis/teams
v1.0.0Apache-2.0
Read and send chat messages; create meetings and get join links
MCP servers
Declared configuration, as published in mcp.json. The directory shows indexed content; it never connects to or executes these servers.
teamsstdio
{
"type": "stdio",
"command": "python",
"args": [
"-m",
"jarvis.plugins.tool.connected_server",
"teams"
]
}What this package declares
The files a client reads when it loads this plugin, exactly as this revision carries them.
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "teams",
"version": "1.0.0",
"description": "Read and send chat messages; create meetings and get join links",
"license": "Apache-2.0",
"extensions": {
"io.github.personaljarvis": {
"display_name": "Microsoft Teams",
"category": "Messaging",
"logo_slug": "teams",
"logo_color": "0078D4",
"featured": false,
"longevity": "self_renewing",
"auth": {
"mode": "oauth_pkce_loopback",
"authorization_url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize",
"token_url": "https://login.microsoftonline.com/common/oauth2/v2.0/token",
"client_id": "REPLACE_WITH_YOUR_CLIENT_ID",
"callback_port": 43891,
"callback_path": "/oauth/callback",
"scopes": [
"offline_access",
"User.Read",
"Chat.Read",
"ChatMessage.Send",
"OnlineMeetings.ReadWrite"
],
"scope_separator": "space",
"refresh_supported": true
},
"mcp_server": {
"transport": "stdio",
"install": [
"python",
"-m",
"jarvis.plugins.tool.connected_server",
"teams"
],
"env_template": {
"JARVIS_CONNECTOR_TOKEN": "$plugin_teams_access_token"
},
"risk_tier": "ask"
},
"post_install_hint_md": "Create your own Microsoft Entra public/native application with redirect URI http://127.0.0.1:43891/oauth/callback, then enter its client ID in this dialog. Enable personal and work/school accounts when supported; no client secret is needed for a public app. Grant only the delegated permissions listed below. Tenant policies may require administrator consent. Each plugin is connected separately and shares only your app registration. Work or school account required. Meeting creation returns a join link; it does not ring participants or open the Teams app. Permissions: offline_access, User.Read, Chat.Read, ChatMessage.Send, OnlineMeetings.ReadWrite.",
"oauth_client_family": "microsoft"
}
}
}
Client extensions
Data this package carries for particular clients. The directory lists the clients named and never reads what is addressed to them.
- io.github.personaljarvis