forked from elieworkspace/rocketchat-mcp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 994 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (30 loc) · 994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[project]
name = "rocketchat-mcp"
version = "0.1.0"
description = "MCP server for Rocket.Chat — send and read messages, DMs, search, files, and channels over stdio"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE", "NOTICE"]
authors = [{ name = "millerchou" }]
keywords = ["mcp", "model-context-protocol", "rocketchat", "rocket-chat", "llm", "ai", "chat"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Communications :: Chat",
]
dependencies = [
"httpx>=0.28.1",
"mcp[cli]>=1.12.3",
]
[project.urls]
Homepage = "https://github.com/millerchou/rocketchat-mcp"
Repository = "https://github.com/millerchou/rocketchat-mcp"
Issues = "https://github.com/millerchou/rocketchat-mcp/issues"
[project.scripts]
rocketchat-mcp = "rocketchat:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
include = ["rocketchat.py"]