mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-08 22:17:44 +00:00
d493bfd42f
- Updated Bessel, Bilateral, Blma, Butter, Conv, Ema, Kama, LSMA, MAMA, MGDI, SSF, USF, ATR, ADL, and ADOSC documentation to use bullet points for key concepts and features. - Added a new Qodana configuration file for code analysis. - Removed coverage configuration from Quantower.Tests.csproj to streamline testing setup.
2.5 KiB
2.5 KiB
MCP Server Configuration Summary
Changes Made
1. Fixed Qdrant MCP Server
Issues Fixed:
- Changed command from
npxtouvx(correct package manager for Python-based MCP servers) - Updated auto-approve tools from
store_memory,search_memorytoqdrant-store,qdrant-find(correct tool names)
Configuration:
"qdrant": {
"command": "uvx",
"args": ["mcp-server-qdrant"],
"env": {
"QDRANT_URL": "http://192.168.1.85:6333",
"COLLECTION_NAME": "agent_memory",
"EMBEDDING_MODEL": "sentence-transformers/all-MiniLM-L6-v2"
}
}
2. Added Codacy MCP Server
Configuration:
"codacy": {
"command": "npx",
"args": ["-y", "@codacy/codacy-mcp"],
"env": {
"CODACY_ACCOUNT_TOKEN": ""
}
}
Next Steps
To Enable Codacy MCP Server:
-
Get Your Codacy Account Token:
- Go to https://app.codacy.com/account/access-management
- Click "Create API Token" or use an existing one
- Copy the token
-
Add the Token to Configuration:
- Open:
C:\Users\miha\AppData\Roaming\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json - Replace
"CODACY_ACCOUNT_TOKEN": ""with your actual token - Example:
"CODACY_ACCOUNT_TOKEN": "your-token-here"
- Open:
-
Restart Cline/VS Code:
- Close and reopen VS Code to load the new MCP servers
Verify Installation:
After restarting, you should see these MCP servers available:
Qdrant Tools:
qdrant-store- Store information with semantic searchqdrant-find- Find relevant information using semantic search
Codacy Tools:
codacy_setup_repository- Add/follow repositoriescodacy_list_organizations- List organizationscodacy_get_repository_with_analysis- Get repository analysiscodacy_list_repository_issues- List code quality issuescodacy_search_organization_srm_items- Search security itemscodacy_cli_analyze- Run local analysis with Codacy CLI- And many more...
Troubleshooting
If Qdrant doesn't work:
- Ensure
uvxis installed:pip install uv - Check if Qdrant server is running at
http://192.168.1.85:6333 - Test connection:
curl http://192.168.1.85:6333/collections
If Codacy doesn't work:
- Verify your API token is valid
- Ensure you have access to the Codacy account
- Check that npx can access @codacy/codacy-mcp package
Additional Resources
- Codacy MCP Server: https://github.com/codacy/codacy-mcp
- Qdrant MCP Server: https://github.com/qdrant/mcp-server-qdrant
- MCP Documentation: https://modelcontextprotocol.io/