feat: add MCP configuration examples

- Add Claude Desktop configuration example
- Add Cursor MCP configuration example
- Provide ready-to-use configuration files for users
This commit is contained in:
longhao 2025-05-27 11:33:10 +08:00 committed by Hal
parent 3cbb43f2d6
commit ec677fb709
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{
"mcpServers": {
"pypi-query": {
"command": "uvx",
"args": ["--from", "pypi-query-mcp-server", "pypi-query-mcp"],
"env": {
"PYPI_INDEX_URL": "https://pypi.org/simple/",
"CACHE_TTL": "3600"
}
}
}
}

12
examples/cursor_mcp.json Normal file
View File

@ -0,0 +1,12 @@
{
"mcpServers": {
"pypi-query": {
"command": "uvx",
"args": ["--from", "pypi-query-mcp-server", "pypi-query-mcp"],
"env": {
"PYPI_INDEX_URL": "https://pypi.org/simple/",
"CACHE_TTL": "3600"
}
}
}
}