mcp-servers-pouch
by kohei25
This repository provides example configurations for setting up Model Context Protocol (MCP) servers. It includes configuration examples for Claude Desktop users on both Mac and Windows.
View on GitHub
Last updated: N/A
セットアップの方法
設定ファイルの例
- Mac
{
"mcpServers": {
"arxiv": {
"command": "uv", // うまくいかない場合は、実行パス. /Users/niko/.cargo/bin/uv
"args": [
"--directory",
"/ABSOLUTE/PATH/TO/PARENT/FOLDER/mcp-servers-pouch/src/pouch",
"run",
"t_arxiv.py"
]
}
}
}
- Windows
{
"mcpServers": {
"arxiv": {
"command": "uv",
"args": [
"--directory",
"C:\\ABSOLUTE\\PATH\\TO\\PARENT\\FOLDER\\mcp-servers-pouch\\src\\pouch",
"run",
"t_arxiv.py"
]
}
}
}