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
3 changes: 3 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# PR Checklist

**Friendly reminder**: please read [CONTRIBUTING.md](../CONTRIBUTING.md#prerequisites), specially CLA in case you are
a contributor and not a maintainer.

Please check if your PR fulfills the following requirements:

- [ ] Tests for the changes have been added (for bug fixes / features)
Expand Down
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,18 @@ Integration tests require the set-up the following environment variables:
uv run pytest -m integration
```

### Pre-built docker image

There is a [pre-built image](https://github.com/InditexTech/mcp-teams-server/pkgs/container/mcp-teams-server) hosted in ghcr.io.
You can install this image by running the following command

```commandline
docker pull ghcr.io/inditextech/mcp-teams-server:latest
```

### Build docker image

A docker image is available to run MCP server:
A docker image is available to run MCP server. You can build it with the following command:

```bash
docker build . -t inditextech/mcp-teams-server
Expand Down
2 changes: 2 additions & 0 deletions doc/MS-Teams-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ Bot will be allowed to interact with Teams Channel:

![Azure Bot Channels](./images/azure_bot_channels.png)

You will not need to deploy a Bot application because this MCP server uses Azure Bot Framework as a client to Bot Framework api.

### Microsoft application publishing

Create an application for Microsoft Teams
Expand Down
7 changes: 7 additions & 0 deletions llms-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ MCP Teams Server is a communication tool that allows AI assistants to interact w

Add the MCP server configuration to your MCP settings file based on your LLM client.

Remember there is a [pre-built image](https://github.com/InditexTech/mcp-teams-server/pkgs/container/mcp-teams-server) hosted in ghcr.io.
You can install this image by running the following command

```commandline
docker pull ghcr.io/inditextech/mcp-teams-server:latest
```

Sample docker setup:

```yaml
Expand Down
Loading