-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 963 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (33 loc) · 963 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
35
36
37
38
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "firepass-mcp"
dynamic = ["version"]
description = "MCP server that wraps Kimi K2.6 Turbo (Fireworks AI) as an agentic coding assistant with a full tool loop."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [{ name = "Jake Gearon" }]
keywords = ["mcp", "fireworks", "kimi", "agent", "coding-assistant"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"mcp[cli]>=1.0.0",
"httpx>=0.27",
]
[project.urls]
Repository = "https://github.com/jameshgrn/firepass-mcp"
[project.scripts]
firepass-mcp = "firepass_mcp.server:main"
[tool.hatch.version]
path = "src/firepass_mcp/__init__.py"
[dependency-groups]
dev = [
"pytest>=9.0.3",
]