Skip to content

Commit 6e2bd23

Browse files
authored
Fix build issue (#2)
1 parent 2027ef3 commit 6e2bd23

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

.github/workflows/on-release-main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ jobs:
6868
runs-on: ubuntu-latest
6969
needs: [set-version]
7070
steps:
71+
- name: Check out
72+
uses: actions/checkout@v4
7173
- name: Export tag
7274
id: vars
7375
run: echo tag=${GITHUB_REF#refs/*/} >> $GITHUB_OUTPUT

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,21 @@ IMAP and SMTP via MCP Server
1313

1414
## Installation
1515

16+
We recommend using [uv](https://github.com/ai-zerolab/uv) to manage your environment.
17+
18+
Try `uvx mcp-email-server ui` to config, and use following configuration for mcp client:
19+
20+
```json
21+
{
22+
"mcpServers": {
23+
"zerolib-email": {
24+
"command": "uvx",
25+
"args": ["mcp-email-server", "stdio"]
26+
}
27+
}
28+
}
29+
```
30+
1631
This package is available on PyPI, so you can install it using `pip install mcp-email-server`
1732

1833
After that, configure your email server using the ui: `mcp-email-server ui`

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dependencies = [
2424
"loguru>=0.7.3",
2525
"mcp[cli]>=1.3.0",
2626
"pydantic>=2.10.6",
27-
"pydantic-settings>=2.8.0",
27+
"pydantic-settings[toml]>=2.8.0",
2828
"tomli-w>=1.2.0",
2929
"typer>=0.15.1",
3030
]

uv.lock

Lines changed: 7 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)