Skip to main content

GitMem MCP Server - Token-Efficient Codebase Navigation for AI Agents

Project description

Manhattan MCP (GitMem)

Token-Efficient Codebase Navigation - MCP Server for the Manhattan Memory System.

Python 3.10+ License: MIT

Manhattan MCP is a local Model Context Protocol (MCP) server that provides AI agents (Claude Desktop, Cursor, Windsurf, etc.) with a Virtual File System (VFS) backed by compressed, cached code context. It allows agents to understand large codebases while saving 50-80% on tokens.

Features

  • 🏗️ GitMem Context - Compressed semantic code skeletons (signatures, summaries, hierarchies).
  • 🔍 Hybrid Search - Semantic and keyword search across the entire codebase.
  • 📂 VFS Navigation - Browse and read files via token-efficient outlines and contexts.
  • 📝 Auto-Indexing - Automatically keeps the code index fresh after edits.
  • 📊 Token Analytics - Track token savings and repository indexing status.

Installation

pip install manhattan-mcp

Quick Start

1. Install Manhattan MCP

pip install manhattan-mcp

2. Configure Your AI Client

Setting up Manhattan MCP is a two-step process:

Step A: Register the Server (One-time)

Add Manhattan MCP to your AI tool's global settings.

Claude Desktop Add to claude_desktop_config.json:

{
  "mcpServers": {
    "manhattan": {
      "command": "manhattan-mcp",
      "args": ["start"]
    }
  }
}

Cursor Add to Cursor Settings > MCP:

  • Name: manhattan
  • Type: command
  • Command: manhattan-mcp

GitHub Copilot (VS Code) Add to your Copilot MCP settings:

{
  "servers": {
    "manhattan": {
      "command": "manhattan-mcp",
      "args": ["start"]
    }
  }
}

Step B: Apply Project Rules (Per Project)

Run the setup command in your project root to ensure the agent follows the mandatory indexing policy.

# For Cursor
manhattan-mcp setup cursor

# For Claude
manhattan-mcp setup claude

# For Gemini (Antigravity)
manhattan-mcp setup gemini

# For GitHub Copilot
manhattan-mcp setup copilot

# For Windsurf
manhattan-mcp setup windsurf

# For all supported clients
manhattan-mcp setup all

3. Start Navigating!

Once configured, your AI agent can use Manhattan MCP to understand your codebase efficiently.

Example Usage

Searching for code:

User: How does the authentication flow work?
AI: *calls search_codebase "authentication flow"*
    I found the authentication logic in `auth.py`. 
    Let me read the context for you...

Understanding a file:

User: Summarize the main functions in server.py
AI: *calls get_file_outline "src/server.py"*
    The server.py file contains:
    - `start_server()`: Initializes the FastMCP instance...
    - `api_usage()`: Returns usage statistics...

Saving tokens:

User: Read the implementation of the memory builder.
AI: *calls read_file_context "src/builder.py"*
    (Returns a compressed semantic skeleton, saving 70% tokens)
    The memory builder uses a two-phase ingestion process...

Configuration Options

Environment Variable Description Default
MANHATTAN_API_KEY Your API key (if using cloud embeddings) -
MANHATTAN_API_URL Custom API URL (optional) Gradio Endpoint
MANHATTAN_MEM_PATH Storage path for memory/index ~/.manhattan-mcp/data
MANHATTAN_TIMEOUT Request timeout (seconds) 120

CLI Commands

# Start the MCP server (default)
manhattan-mcp start

# Set up client rules (Cursor, Claude, etc.)
manhattan-mcp setup [client]

# Show version
manhattan-mcp --version

# Show help
manhattan-mcp --help

License

MIT License - see LICENSE for details.

Links

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

manhattan_mcp-1.0.6-cp314-cp314-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86-64

manhattan_mcp-1.0.6-cp314-cp314-win32.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86

manhattan_mcp-1.0.6-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (12.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

manhattan_mcp-1.0.6-cp314-cp314-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

manhattan_mcp-1.0.6-cp314-cp314-macosx_10_15_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

manhattan_mcp-1.0.6-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

manhattan_mcp-1.0.6-cp313-cp313-win32.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86

manhattan_mcp-1.0.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (12.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

manhattan_mcp-1.0.6-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

manhattan_mcp-1.0.6-cp313-cp313-macosx_10_13_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

manhattan_mcp-1.0.6-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

manhattan_mcp-1.0.6-cp312-cp312-win32.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86

manhattan_mcp-1.0.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

manhattan_mcp-1.0.6-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

manhattan_mcp-1.0.6-cp312-cp312-macosx_10_13_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

manhattan_mcp-1.0.6-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

manhattan_mcp-1.0.6-cp311-cp311-win32.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86

manhattan_mcp-1.0.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

manhattan_mcp-1.0.6-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

manhattan_mcp-1.0.6-cp311-cp311-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

manhattan_mcp-1.0.6-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

manhattan_mcp-1.0.6-cp310-cp310-win32.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86

manhattan_mcp-1.0.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

manhattan_mcp-1.0.6-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

manhattan_mcp-1.0.6-cp310-cp310-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file manhattan_mcp-1.0.6-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for manhattan_mcp-1.0.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 993eb5ae3e919fed6b37300dfc68c79ec6eb33ae559d2d7923588fafb47c3a71
MD5 d0ddadce0159b5ddb014f215bf2eae51
BLAKE2b-256 be9384c8d1f0256ccae950b17119083996804775eed0ed6edb0fb1d33c2d9ac2

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp314-cp314-win32.whl.

File metadata

  • Download URL: manhattan_mcp-1.0.6-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for manhattan_mcp-1.0.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 4486512be9616f1db6487f74a683acaa1326dd78325b1e174ecc86d73e365b65
MD5 4eb2a89a6133b0053610e9032571a584
BLAKE2b-256 5ec966d1c93b13c99ecc20a2a41163589e2d6f3b2d30eb83774dface0f861840

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for manhattan_mcp-1.0.6-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d4d76f04f7a5f998f30aec0afb0964b8205d009ad28d39ce1714c41ead58d185
MD5 46ed50bb3a34983c26bcf45b6e51c5ef
BLAKE2b-256 42a783d138f978c7840d95b46d56503a785efab92c79c4b93524dc1bb6a42ecd

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for manhattan_mcp-1.0.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3676c459212b19d3cb0ecbaa8c71fcfd92e50a8273c0354bc710b68299ca3e04
MD5 631f224a82e2baea9f094576ac346fad
BLAKE2b-256 aa18307ec8e5e452576a952259cbaf3b62817221d511237603bc9e6e79d65700

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for manhattan_mcp-1.0.6-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6f06db4cc342fba89ed2007e060043b679955ed4b2af202061cc708140b292c0
MD5 3bdb5d7cedc680cb2f2086dde1655a1f
BLAKE2b-256 764936467fe8efec12dc14793f6be820920a714ae005a9a144972438260270eb

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for manhattan_mcp-1.0.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a5d0a614b78578464f7e70cc53e0dc14cbe0bc9596fabe763a5fdcb32ebd0b7b
MD5 99004bf8db18438dc2f40f43c4749842
BLAKE2b-256 86c390d6c5157da0286442d2df5e065ac86be4069982e30e2e5e494c10516e12

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp313-cp313-win32.whl.

File metadata

  • Download URL: manhattan_mcp-1.0.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for manhattan_mcp-1.0.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2c742ca2b540dbcb7d91c942b6f8f34e9c5c395c93cb742cebbf26d13b009f4a
MD5 1d239f9099c44dc23177bb23d13eec95
BLAKE2b-256 176c382bb50323a5e2eca9886c3e3a8993dff9351bbf0ea6681ce3181677bb98

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for manhattan_mcp-1.0.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b6d0d229c2eeccb796b69fce1346885533a25c8933ffa8d331bf4ab29e8df70c
MD5 fea522a23bf663145f7bde7091d5c7db
BLAKE2b-256 622f4b22524ed5675892665651c084581dff00e970018a2ae939789296c5e730

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for manhattan_mcp-1.0.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cca535541f490cac8b296e19533482f9856b5b502fd14137e744d030400419bf
MD5 6d1d03f82711e7ffffe9d75d2d38a11d
BLAKE2b-256 2a89a6eb96991453839bad8b426a4ed2ca7889cb917ca7c5d2268801c9f8f31b

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for manhattan_mcp-1.0.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 82d422cb28de48a1f9264a9d47b0ab81e901084991ea2dfe906fb75c410e1115
MD5 1f6d34f80092890b3c83384ca3cf74d8
BLAKE2b-256 c9e1d0eea88951ef5c3118981d8a52781f4f77cf4a9472ad8941aa2f845fe8df

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for manhattan_mcp-1.0.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ee06d650449503652acfdc9e4a891456f72974cef5f74bc03b344ba28bf529a4
MD5 9414d9d4d3eccfe50aee9d122c6d45d1
BLAKE2b-256 c5a712fba60829ceb5f79ebd2f7ab6d30ba677c6dc90ec61fe86215dceeb816d

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp312-cp312-win32.whl.

File metadata

  • Download URL: manhattan_mcp-1.0.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for manhattan_mcp-1.0.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 80efaafab113760b74f101d7021165f47f99859c60ff71ad383727492db8fe9d
MD5 3914e891d14fdeaa783fe333bf7e4b49
BLAKE2b-256 edf1e53f7d4798f1b8686bfd1321c04dc0b587d98f37c044fb4c9f3c045c9dd5

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for manhattan_mcp-1.0.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 97b8fc7bcb79191987e6f885c1fd42f07875ebd6fd19febce84354d5c65683af
MD5 4c0465b9e3e661af9291e7eb728d9d00
BLAKE2b-256 d1037fad0c5f1f61e80ae1025dad5468133638ead582affb623e5fe429722097

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for manhattan_mcp-1.0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 504ee1846cbaa183e45e7c2d8eb2da6ffd53dd12f712cd11ed7d29e5f5b097f7
MD5 b4aca53bc5f9991372700e310bed6df8
BLAKE2b-256 7725729f0e7e6911acbd1f98cd106cb789b5406ec289836a3201bc07afabcaef

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for manhattan_mcp-1.0.6-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b990a2937a9922eb10e23d7acf3a80460e995903dcd3a24d20ab3e9f6a2e641b
MD5 26edd26a3aed77042ba5d2c19d70fd6b
BLAKE2b-256 590a00c6ed9d73766951bc553f802c0827ae2cd40df37978e6af328941f1b587

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for manhattan_mcp-1.0.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 29fd26b1eed2d2ae8280cae65a0790dbf601fbacab53b13b7f1c96aca0b47962
MD5 b83007c4e74572ddfc6c0e3ea6bf8867
BLAKE2b-256 da7ef9d15561c87da43ad9d2f7e2a2c3fabac9404eac96d1aaae74b992f411c4

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp311-cp311-win32.whl.

File metadata

  • Download URL: manhattan_mcp-1.0.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for manhattan_mcp-1.0.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 58dcf63177bf865bdadb07a08653244a02681bb161971d9f09a467cf42160057
MD5 7a56ff7f93ae647c086c58b8e7454ad5
BLAKE2b-256 0cd619addf57b04c7698bfcf916814dcb12b0123c23de21996b5d460da6dfdab

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for manhattan_mcp-1.0.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f44831885af9abd3b8e5c6df28349aa51f00cd71974f208708fcec5bfe8ba63
MD5 3e40467d4508feb6ca7dc0c269d980c8
BLAKE2b-256 c8a9f674ff283a64414d736d75256330f444908079ea104608f3911dd2605a14

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for manhattan_mcp-1.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7dfee73cda3de38b7724d0892c0b0fe10e1807cebef47252656940d8a000b87
MD5 429f060fe295512291032425f13970bf
BLAKE2b-256 3838c9896a339ef0b0fa7e209ab050980670bebcbe879c8f237cdfd0d11b9381

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for manhattan_mcp-1.0.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c37a0079e028400ae9a635605bb357576e5c40929a9408bba8dc715b7ccf4a1d
MD5 dd078acadbbd84337ac927bc97f69140
BLAKE2b-256 c97950dbbc870ed1692db236d4cd5b2807a5c4adaea4001e95b2adcac003b482

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for manhattan_mcp-1.0.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1ea8043adb09322377328a48553510cf474c3de931e32c17ad162e5ef99daef3
MD5 8e649c087293801d178777ca0f2eff51
BLAKE2b-256 60d5b0e7b8ec8a2cb8593d525eaac4473a82d8d4b882923b48ca4e913d7fe037

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp310-cp310-win32.whl.

File metadata

  • Download URL: manhattan_mcp-1.0.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for manhattan_mcp-1.0.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8f19baa2b4483982b95d98fce85f6a2cfd10b7fc997d72da9ef78d619d18aec5
MD5 2a26d4ff48bf0e30c686dfdfb7c43cc6
BLAKE2b-256 f18bca31d7bdf605d955d71ebaeaef5df8b94fd6c36fddf29150cc532f33ea87

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for manhattan_mcp-1.0.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 073ded203fe3c1b0f0d8652068e883b4cf1e622b8bab323a7fd911df817035b3
MD5 46bd2325c1327c41f655dd1cfc243c47
BLAKE2b-256 b61eba6aeded8bcba84ce2838102031f2248c2818314bc3260447e3b2fc1c353

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for manhattan_mcp-1.0.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee9ffb3750f6c2d7791f6112c36b6d70ed215978f02db64ec9ec64b30656a5a2
MD5 ff3349e370550e0250142ae5be959a6a
BLAKE2b-256 80b82d4da5716398c793394a6e7058f226b50587d687654503afb78e83bb1a5c

See more details on using hashes here.

File details

Details for the file manhattan_mcp-1.0.6-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for manhattan_mcp-1.0.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c10a1d19dd37f721de1811888c88ce18ff3510bf249225a734448dea9e3d553a
MD5 9538b7af422ef0c921e8586cfe9f976b
BLAKE2b-256 ebc6803d92b94a3922b82160b2e8380be243566101d781445001e6b0e0847009

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page