Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions llms-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ Sample docker setup:
```yaml
{
"mcpServers": {
"teams": {
"msteams": {
"command": "docker",
"args": [
"run",
"-i"
"--rm"
"-i",
"--rm",
"-e",
"TEAMS_APP_ID",
"-e",
Expand All @@ -40,7 +40,7 @@ Sample docker setup:
"TEAM_ID",
"-e",
"TEAMS_CHANNEL_ID",
"ghcr.io/InditexTech/mcp-teams-server"
"ghcr.io/inditextech/mcp-teams-server"
],
"env": {
"TEAMS_APP_ID": "<fill_me_with_proper_uuid>",
Expand Down Expand Up @@ -74,7 +74,7 @@ Sample Cline setup with docker through WSL (Windows only):
"run",
"-i",
"--rm",
"ghcr.io/InditexTech/mcp-teams-server"
"ghcr.io/inditextech/mcp-teams-server"
],
"env": {
"DOCKER_HOST": "unix:///var/run/docker.sock"
Expand All @@ -92,7 +92,7 @@ Sample local development setup:
```yaml
{
"mcpServers": {
"teams": {
"msteams": {
"command": "uv",
"args": [
"run",
Expand Down
1 change: 0 additions & 1 deletion src/mcp_teams_server/teams.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ def get_team_id(self):
async def on_turn_error(context: TurnContext, error: Exception):
LOGGER.error(f"Error {str(error)}")
# await context.send_activity("An error occurred in the bot, please try again later")
pass

def _create_conversation_reference(self) -> ConversationReference:
service_url = "https://smba.trafficmanager.net/emea/"
Expand Down
Loading