Copies source (no node_modules, dist, .tasks, .wiki, __pycache__) for: - projects-meta-mcp v2.25.0 (TypeScript/Node) - wiki-graph v0.3.1 (TypeScript/Node) - interns-mcp v0.3.3 (Python/FastMCP) .gitignore: exclude lib build artefacts (node_modules, dist, .venv, __pycache__, *.pyc) bootstrap.ps1: add MCP build step — npm install+build for TS servers, venv+pip for Python Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
18 lines
406 B
TOML
18 lines
406 B
TOML
[project]
|
|
name = "interns-mcp"
|
|
version = "0.3.3"
|
|
description = "FastMCP stdio server exposing cheap intern LLM tools for Claude Code"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastmcp>=2.0",
|
|
"openai>=1.0",
|
|
"pyyaml>=6.0",
|
|
"python-dotenv>=1.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=8.0"]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68.0"]
|
|
build-backend = "setuptools.build_meta" |