Skip to content

Commit a67d2e1

Browse files
committed
Update project info
1 parent 5e365f0 commit a67d2e1

File tree

3 files changed

+32
-4
lines changed

3 files changed

+32
-4
lines changed

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2024 ktanaka101
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,8 @@ Location: `%APPDATA%/Claude/claude_desktop_config.json`
6464
{
6565
"mcpServers": {
6666
"duckdb": {
67-
"command": "uv",
67+
"command": "uvx",
6868
"args": [
69-
"--directory",
70-
"~/mcp-server-duckdb",
71-
"run",
7269
"mcp-server-duckdb",
7370
"--db-path",
7471
"~/mcp-server-duckdb/data/data.db"

pyproject.toml

+10
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,19 @@ name = "mcp-server-duckdb"
33
version = "0.1.0"
44
description = "A DuckDB MCP server"
55
readme = "README.md"
6+
license = { file = "LICENSE" }
7+
classifiers = [
8+
"Programming Language :: Python :: 3",
9+
"License :: OSI Approved :: MIT License",
10+
"Operating System :: OS Independent",
11+
]
612
requires-python = ">=3.10"
713
dependencies = ["duckdb>=1.1.3", "mcp>=1.0.0"]
814

15+
[project.urls]
16+
"Homepage" = "https://github.com/ktanaka101/mcp-server-duckdb"
17+
"Bug Tracker" = "https://github.com/ktanaka101/mcp-server-duckdb/issues"
18+
919
[[project.authors]]
1020
name = "ktanaka101"
1121

0 commit comments

Comments
 (0)