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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nia-mcp-server
3
- Version: 1.0.4
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/trynia](https://discord.gg/trynia)
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/trynia](https://discord.gg/trynia)
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
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "nia-mcp-server"
7
- version = "1.0.4"
7
+ version = "1.0.5"
8
8
  description = "NIA Knowledge Agent - MCP server for intelligent codebase search"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -2,4 +2,4 @@
2
2
  NIA MCP Server - Proxy server for NIA Knowledge Agent
3
3
  """
4
4
 
5
- __version__ = "1.0.4"
5
+ __version__ = "1.0.5"
@@ -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