-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsmithery.yaml
More file actions
58 lines (55 loc) · 1.72 KB
/
Copy pathsmithery.yaml
File metadata and controls
58 lines (55 loc) · 1.72 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Smithery deployment manifest for django-orm-lens MCP server.
# Docs: https://smithery.ai/docs/build/project-config/smithery.yaml
#
# The server is a Python package published to PyPI as `django-orm-lens[mcp]`.
# Smithery runs it via `uvx` so no user-side install / venv is required.
name: "@FROWNINGdev/django-orm-lens"
version: "1.12.0"
description: >-
Django ORM static-analysis MCP. 13 read-only tools that expose Django
schema, relationships (FK / M2M / O2O, on_delete, related_name),
migration DAG, missing-index heuristics, and signal graphs. No DB,
no Django boot, no credentials.
author:
name: "FROWNINGdev"
url: "https://github.com/FROWNINGdev"
license: "MIT"
homepage: "https://github.com/FROWNINGdev/django-orm-lens"
keywords:
- django
- orm
- static-analysis
- mcp
- ai-agent
- cursor
- claude
- vibe-coding
- ide-tools
- schema-graph
- er-diagram
- migrations
- n-plus-one
dependencies:
python: ">=3.10"
startCommand:
type: stdio
# A user of the MCP client can point Django ORM Lens at any directory.
# If omitted, the server uses the client's CWD (typical for VS Code /
# Cursor / Claude Desktop workspaces).
configSchema:
type: object
properties:
djangoOrmLensRoot:
type: string
description: >-
Absolute path to the Django project root (the directory that
contains manage.py / your app packages). If omitted, the MCP
server falls back to the client's current working directory.
commandFunction: |-
(config) => ({
command: 'uvx',
args: ['--from', 'django-orm-lens[mcp]', 'django-orm-lens-mcp'],
env: config.djangoOrmLensRoot
? { DJANGO_ORM_LENS_ROOT: config.djangoOrmLensRoot }
: {}
})