-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 966 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 966 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
{
"name": "my-mcp-server",
"version": "1.0.0",
"description": "A Model Context Protocol (MCP) server for handling different services",
"scripts": {
"start": "uv run python main.py",
"stdio": "uv run python main.py --stdio",
"http": "uv run python main.py --http",
"dev": "uv run uvicorn main:app --reload --host 0.0.0.0 --port 8000",
"dev-prod": "uv run uvicorn main:app --host 0.0.0.0 --port 8000 --workers 4",
"install": "uv sync",
"install-dev": "uv sync --dev",
"lint": "uv run ruff check .",
"format": "uv run ruff format .",
"test": "uv run pytest",
"clean": "find . -type d -name __pycache__ -delete && find . -name '*.pyc' -delete"
},
"packageManager": "bun@1.0.0",
"keywords": [
"mcp",
"fastmcp",
"linkedin",
"api",
"server"
],
"repository": {
"type": "git",
"url": "git@github.com:shipeasecommerce/my-mcp-server.git"
},
"engines": {
"python": ">=3.10"
}
}