Skip to content

Commit 237a70a

Browse files
authored
Merge pull request #20 from InditexTech/doc/fix-docker-imagename
Docker image name
2 parents 8244ebb + 6760082 commit 237a70a

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

llms-install.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ Sample docker setup:
2222
```yaml
2323
{
2424
"mcpServers": {
25-
"teams": {
25+
"msteams": {
2626
"command": "docker",
2727
"args": [
2828
"run",
29-
"-i"
30-
"--rm"
29+
"-i",
30+
"--rm",
3131
"-e",
3232
"TEAMS_APP_ID",
3333
"-e",
@@ -40,7 +40,7 @@ Sample docker setup:
4040
"TEAM_ID",
4141
"-e",
4242
"TEAMS_CHANNEL_ID",
43-
"ghcr.io/InditexTech/mcp-teams-server"
43+
"ghcr.io/inditextech/mcp-teams-server"
4444
],
4545
"env": {
4646
"TEAMS_APP_ID": "<fill_me_with_proper_uuid>",
@@ -74,7 +74,7 @@ Sample Cline setup with docker through WSL (Windows only):
7474
"run",
7575
"-i",
7676
"--rm",
77-
"ghcr.io/InditexTech/mcp-teams-server"
77+
"ghcr.io/inditextech/mcp-teams-server"
7878
],
7979
"env": {
8080
"DOCKER_HOST": "unix:///var/run/docker.sock"
@@ -92,7 +92,7 @@ Sample local development setup:
9292
```yaml
9393
{
9494
"mcpServers": {
95-
"teams": {
95+
"msteams": {
9696
"command": "uv",
9797
"args": [
9898
"run",

src/mcp_teams_server/teams.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ def get_team_id(self):
9595
async def on_turn_error(context: TurnContext, error: Exception):
9696
LOGGER.error(f"Error {str(error)}")
9797
# await context.send_activity("An error occurred in the bot, please try again later")
98-
pass
9998

10099
def _create_conversation_reference(self) -> ConversationReference:
101100
service_url = "https://smba.trafficmanager.net/emea/"

0 commit comments

Comments
 (0)