kylas-crm-mcp 1.0.0__tar.gz → 1.0.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kylas-crm-mcp
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: MCP server for Kylas CRM lead operations: create leads, search leads, lookup users/products/pipelines.
5
5
  Author-email: akshaykylas94 <akshay.gunshetti@kylas.io>
6
6
  License: MIT
@@ -29,6 +29,8 @@ Model Context Protocol server for **Kylas CRM** lead operations. Use it from Cur
29
29
 
30
30
  <!-- mcp-name: io.github.akshaykylas94/kylas-crm -->
31
31
 
32
+ **→ Want to use this in Cursor?** See **[FOR_USERS.md](FOR_USERS.md)** for install steps and MCP config you can share with others.
33
+
32
34
  ## Features
33
35
 
34
36
  - **get_lead_field_instructions** – Get lead schema (standard + custom fields, picklist IDs)
@@ -4,6 +4,8 @@ Model Context Protocol server for **Kylas CRM** lead operations. Use it from Cur
4
4
 
5
5
  <!-- mcp-name: io.github.akshaykylas94/kylas-crm -->
6
6
 
7
+ **→ Want to use this in Cursor?** See **[FOR_USERS.md](FOR_USERS.md)** for install steps and MCP config you can share with others.
8
+
7
9
  ## Features
8
10
 
9
11
  - **get_lead_field_instructions** – Get lead schema (standard + custom fields, picklist IDs)
@@ -0,0 +1,2 @@
1
+ # Kylas CRM MCP Server - Lead Only
2
+ __version__ = "1.0.1"
@@ -0,0 +1,19 @@
1
+ """
2
+ Run the Kylas CRM MCP server via: python3 -m kylas_crm_mcp
3
+ Uses the same entry point as the kylas-crm-mcp script, so it works
4
+ regardless of current working directory (avoids loading a local main.py).
5
+ """
6
+ import sys
7
+ from importlib.metadata import entry_points
8
+
9
+ def main() -> None:
10
+ eps = entry_points(group="console_scripts")
11
+ for ep in eps:
12
+ if ep.name == "kylas-crm-mcp":
13
+ ep.load()()
14
+ return
15
+ print("kylas-crm-mcp: could not find console_scripts entry point. Run: pip install kylas-crm-mcp", file=sys.stderr)
16
+ sys.exit(1)
17
+
18
+ if __name__ == "__main__":
19
+ main()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kylas-crm-mcp
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: MCP server for Kylas CRM lead operations: create leads, search leads, lookup users/products/pipelines.
5
5
  Author-email: akshaykylas94 <akshay.gunshetti@kylas.io>
6
6
  License: MIT
@@ -29,6 +29,8 @@ Model Context Protocol server for **Kylas CRM** lead operations. Use it from Cur
29
29
 
30
30
  <!-- mcp-name: io.github.akshaykylas94/kylas-crm -->
31
31
 
32
+ **→ Want to use this in Cursor?** See **[FOR_USERS.md](FOR_USERS.md)** for install steps and MCP config you can share with others.
33
+
32
34
  ## Features
33
35
 
34
36
  - **get_lead_field_instructions** – Get lead schema (standard + custom fields, picklist IDs)
@@ -1,6 +1,8 @@
1
1
  README.md
2
2
  main.py
3
3
  pyproject.toml
4
+ kylas_crm_mcp/__init__.py
5
+ kylas_crm_mcp/__main__.py
4
6
  kylas_crm_mcp.egg-info/PKG-INFO
5
7
  kylas_crm_mcp.egg-info/SOURCES.txt
6
8
  kylas_crm_mcp.egg-info/dependency_links.txt
@@ -0,0 +1,2 @@
1
+ kylas_crm_mcp
2
+ main
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "kylas-crm-mcp"
7
- version = "1.0.0"
7
+ version = "1.0.1"
8
8
  description = "MCP server for Kylas CRM lead operations: create leads, search leads, lookup users/products/pipelines."
9
9
  readme = "README.md"
10
10
  license = { text = "MIT" }
@@ -41,3 +41,4 @@ kylas-crm-mcp = "main:run"
41
41
 
42
42
  [tool.setuptools]
43
43
  py-modules = ["main"]
44
+ packages = ["kylas_crm_mcp"]
File without changes
File without changes