nia-mcp-server 1.0.4__tar.gz → 1.0.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nia-mcp-server might be problematic. Click here for more details.
- {nia_mcp_server-1.0.4 → nia_mcp_server-1.0.5}/PKG-INFO +2 -2
- {nia_mcp_server-1.0.4 → nia_mcp_server-1.0.5}/README.md +1 -1
- nia_mcp_server-1.0.5/nia_analytics.log +0 -0
- nia_mcp_server-1.0.5/nia_mcp_server.log +4 -0
- {nia_mcp_server-1.0.4 → nia_mcp_server-1.0.5}/pyproject.toml +1 -1
- {nia_mcp_server-1.0.4 → nia_mcp_server-1.0.5}/src/nia_mcp_server/__init__.py +1 -1
- {nia_mcp_server-1.0.4 → nia_mcp_server-1.0.5}/src/nia_mcp_server/server.py +6 -0
- {nia_mcp_server-1.0.4 → nia_mcp_server-1.0.5}/.gitignore +0 -0
- {nia_mcp_server-1.0.4 → nia_mcp_server-1.0.5}/ARCHITECTURE.md +0 -0
- {nia_mcp_server-1.0.4 → nia_mcp_server-1.0.5}/LICENSE +0 -0
- {nia_mcp_server-1.0.4 → nia_mcp_server-1.0.5}/src/nia_mcp_server/__main__.py +0 -0
- {nia_mcp_server-1.0.4 → nia_mcp_server-1.0.5}/src/nia_mcp_server/api_client.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nia-mcp-server
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.5
|
|
4
4
|
Summary: NIA Knowledge Agent - MCP server for intelligent codebase search
|
|
5
5
|
Project-URL: Homepage, https://trynia.ai
|
|
6
6
|
Project-URL: Documentation, https://docs.trynia.ai
|
|
@@ -240,7 +240,7 @@ Large repositories can take a few minutes. Use `check_repository_status` to moni
|
|
|
240
240
|
## Support
|
|
241
241
|
|
|
242
242
|
- Documentation: [https://docs.trynia.ai](https://docs.trynia.ai)
|
|
243
|
-
- Discord: [https://discord.gg/
|
|
243
|
+
- Discord: [https://discord.gg/BBSwUMrrfn](https://discord.gg/BBSwUMrrfn)
|
|
244
244
|
- Email: support@trynia.ai
|
|
245
245
|
|
|
246
246
|
## License
|
|
@@ -212,7 +212,7 @@ Large repositories can take a few minutes. Use `check_repository_status` to moni
|
|
|
212
212
|
## Support
|
|
213
213
|
|
|
214
214
|
- Documentation: [https://docs.trynia.ai](https://docs.trynia.ai)
|
|
215
|
-
- Discord: [https://discord.gg/
|
|
215
|
+
- Discord: [https://discord.gg/BBSwUMrrfn](https://discord.gg/BBSwUMrrfn)
|
|
216
216
|
- Email: support@trynia.ai
|
|
217
217
|
|
|
218
218
|
## License
|
|
File without changes
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
2025-07-03 23:06:19,983 [ERROR] nia_mcp_server.server: Server error: NIA_API_KEY environment variable not set. Get your API key at https://trynia.ai/api-keys
|
|
2
|
+
2025-07-03 23:06:40,219 [INFO] nia_mcp_server.server: Starting NIA MCP Server
|
|
3
|
+
2025-07-03 23:06:46,602 [ERROR] nia_mcp_server.server: Server error: unhandled errors in a TaskGroup (1 sub-exception)
|
|
4
|
+
2025-07-03 23:10:49,097 [INFO] nia_mcp_server.server: Starting NIA MCP Server
|
|
@@ -85,6 +85,9 @@ async def index_repository(
|
|
|
85
85
|
|
|
86
86
|
Returns:
|
|
87
87
|
Status of the indexing operation
|
|
88
|
+
|
|
89
|
+
Important:
|
|
90
|
+
- When started indexing, prompt users to either use check_repository_status tool or go to app.trynia.ai to check the status.
|
|
88
91
|
"""
|
|
89
92
|
try:
|
|
90
93
|
client = await ensure_api_client()
|
|
@@ -483,6 +486,9 @@ async def index_documentation(
|
|
|
483
486
|
|
|
484
487
|
Returns:
|
|
485
488
|
Status of the indexing operation
|
|
489
|
+
|
|
490
|
+
Important:
|
|
491
|
+
- When started indexing, prompt users to either use check_documentation_status tool or go to app.trynia.ai to check the status.
|
|
486
492
|
"""
|
|
487
493
|
try:
|
|
488
494
|
client = await ensure_api_client()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|