everyrow-mcp 0.1.8__py3-none-any.whl → 0.1.10__py3-none-any.whl

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.
everyrow_mcp/server.py CHANGED
@@ -1,6 +1,7 @@
1
1
  """MCP server for everyrow SDK operations."""
2
2
 
3
3
  import json
4
+ import logging
4
5
  import os
5
6
  import sys
6
7
  from contextlib import asynccontextmanager
@@ -30,7 +31,6 @@ async def lifespan(_server: FastMCP):
30
31
  response = await whoami(client=c)
31
32
  if response is None:
32
33
  raise RuntimeError("Failed to authenticate with everyrow API")
33
- print("everyrow-mcp: Authenticated successfully")
34
34
  except Exception as e:
35
35
  raise RuntimeError(f"everyrow-mcp startup failed: {e}") from e
36
36
 
@@ -539,6 +539,14 @@ def _schema_to_model(name: str, schema: dict[str, Any]) -> type[BaseModel]:
539
539
 
540
540
  def main():
541
541
  """Run the MCP server."""
542
+ # Configure logging to use stderr only (stdout is reserved for JSON-RPC)
543
+ logging.basicConfig(
544
+ level=logging.WARNING,
545
+ stream=sys.stderr,
546
+ format="%(levelname)s: %(message)s",
547
+ force=True,
548
+ )
549
+
542
550
  # Check for API key before starting
543
551
  if "EVERYROW_API_KEY" not in os.environ:
544
552
  print(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: everyrow-mcp
3
- Version: 0.1.8
3
+ Version: 0.1.10
4
4
  Summary: MCP server for everyrow: agent ops at spreadsheet scale
5
5
  Requires-Python: >=3.12
6
6
  Requires-Dist: everyrow>=0.1.5
@@ -17,7 +17,15 @@ This server exposes everyrow's 5 core operations as MCP tools, allowing LLM appl
17
17
 
18
18
  **All tools operate on local CSV files.** Provide absolute file paths as input, and transformed results are written to new CSV files at your specified output path.
19
19
 
20
- ## Setup
20
+ ## Installation
21
+
22
+ ### Claude Desktop
23
+
24
+ Download the latest `.mcpb` bundle from the [GitHub Releases](https://github.com/futuresearch/everyrow-sdk/releases) page and double-click to install in Claude Desktop. You'll be prompted to enter your everyrow API key during setup.
25
+
26
+ > **Note:** The MCPB bundle works in Claude Desktop's **Chat** mode. Due to a [known limitation](https://github.com/anthropics/claude-code/issues/20377), local MCP servers are not currently exposed in Cowork mode.
27
+
28
+ ### Manual Config
21
29
 
22
30
  The server requires an everyrow API key. Get one at [everyrow.io/api-key](https://everyrow.io/api-key) ($20 free credit).
23
31
 
@@ -140,6 +148,10 @@ cd everyrow-mcp
140
148
  uv sync
141
149
  uv run pytest
142
150
  ```
151
+ For MCP [registry publishing](https://modelcontextprotocol.info/tools/registry/publishing/#package-deployment):
152
+
153
+ mcp-name: io.github.futuresearch/everyrow-mcp
154
+
143
155
 
144
156
  ## License
145
157
 
@@ -0,0 +1,7 @@
1
+ everyrow_mcp/__init__.py,sha256=26a6CKpWpep-gfie5kxyAJkxshp6ChjxsP0HbfcXL-0,63
2
+ everyrow_mcp/server.py,sha256=MEnUxPxkQXe6JbMO3CbXaIRfk3FSmIQEfEmrPdJizm4,17977
3
+ everyrow_mcp/utils.py,sha256=I79K5y844uIT2pMkXouwLrkpHbxMXlPQRfJneWclHZU,2477
4
+ everyrow_mcp-0.1.10.dist-info/METADATA,sha256=tEyn3NbhjyCH-0KHdUmwIQgqew1JB_JyXtnYEZPdKog,4720
5
+ everyrow_mcp-0.1.10.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
6
+ everyrow_mcp-0.1.10.dist-info/entry_points.txt,sha256=0QaEmw8HuQP8LnTYC5V3ZBFFVftn_lBicmXlmlztYZM,58
7
+ everyrow_mcp-0.1.10.dist-info/RECORD,,
@@ -1,7 +0,0 @@
1
- everyrow_mcp/__init__.py,sha256=26a6CKpWpep-gfie5kxyAJkxshp6ChjxsP0HbfcXL-0,63
2
- everyrow_mcp/server.py,sha256=VE5cz2nuwItCwClfVTTeG2QfzrqY3tIw1q-d2SKP3_A,17788
3
- everyrow_mcp/utils.py,sha256=I79K5y844uIT2pMkXouwLrkpHbxMXlPQRfJneWclHZU,2477
4
- everyrow_mcp-0.1.8.dist-info/METADATA,sha256=mBHZav3Mn0un1kfJTokkkWyooAPFfzKs2oCOmaEzZhs,4064
5
- everyrow_mcp-0.1.8.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
6
- everyrow_mcp-0.1.8.dist-info/entry_points.txt,sha256=0QaEmw8HuQP8LnTYC5V3ZBFFVftn_lBicmXlmlztYZM,58
7
- everyrow_mcp-0.1.8.dist-info/RECORD,,