Skip to content

Commit ba42720

Browse files
committed
chore: add mcp server config
Signed-off-by: Rai Siqueira <rai93siqueira@gmail.com>
1 parent f86a87b commit ba42720

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "django-telescope"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "A Model Context Protocol (MCP) server for Django applications, inspired by Laravel Boost"
55
readme = "README.md"
66
authors = [
@@ -14,6 +14,9 @@ dependencies = [
1414
"fastmcp>=2.12.4",
1515
]
1616

17+
[tool.mcp]
18+
name = "io.github.raisiqueira/django-telescope"
19+
1720
[project.scripts]
1821
django-telescope = "django_telescope:main"
1922

server.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
3+
"name": "io.github.raisiqueira/django-telescope",
4+
"description": "A Model Context Protocol (MCP) server for Django applications, inspired by Laravel Boost",
5+
"repository": {
6+
"url": "https://github.com/raisiqueira/django-telescope",
7+
"source": "github"
8+
},
9+
"version": "0.1.1",
10+
"packages": [
11+
{
12+
"registryType": "pypi",
13+
"identifier": "django-telescope",
14+
"version": "0.1.1",
15+
"transport": {
16+
"type": "stdio"
17+
},
18+
"environmentVariables": [
19+
{
20+
"description": "Django settings module path (e.g., 'myproject.settings')",
21+
"isRequired": true,
22+
"format": "string",
23+
"isSecret": false,
24+
"name": "DJANGO_SETTINGS_MODULE"
25+
}
26+
]
27+
}
28+
]
29+
}

0 commit comments

Comments
 (0)