Skip to content

Commit 3124d4a

Browse files
committed
chore: Update README.md
1 parent e1ad612 commit 3124d4a

File tree

4 files changed

+17
-18
lines changed

4 files changed

+17
-18
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,17 @@ A Model Context Protocol server that provides coze resource and tool.
88
- `list_bots` - Get bots list
99
- `create_bot` - Create bot
1010

11+
- `get_me`: Get self user info
12+
- `list_workspaces`: List workspaces
13+
- `list_bots`: List bots
14+
- `retrieve_bot`: Retrieve bot info
15+
- `create_bot`: Create bot
16+
- `update_bot`: Update bot
17+
- `publish_bot`: Publish bot to API channel
18+
- `chat_with_bot`: Chat with bot
19+
- `chat_with_workflow`: Chat with workflow
20+
- `list_voices`: List voice
21+
1122
## Installation
1223

1324
### Using uv (recommended)

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ dependencies = [
1313
"cozepy>=0.13.0",
1414
"mcp[cli]>=1.5.0",
1515
"pydantic>=2.0.0",
16-
"tzdata>=2024.2",
1716
]
1817

1918
[dependency-groups]

src/coze_mcp_server/server.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import sys
33
from typing import List
44

5-
from cozepy import (
5+
from cozepy import ( # type: ignore
66
AsyncCoze,
77
AsyncTokenAuth,
88
COZE_CN_BASE_URL,
@@ -13,8 +13,8 @@
1313
Voice,
1414
User,
1515
)
16-
from mcp.server import FastMCP
17-
from pydantic import BaseModel
16+
from mcp.server import FastMCP # type: ignore
17+
from pydantic import BaseModel # type: ignore
1818

1919

2020
class Config(BaseModel):

uv.lock

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

0 commit comments

Comments
 (0)