P

Poetry

Manage Python Poetry projects and environments.

·No reviews yet
Repo
Share:

About

Auto-generated

Poetry is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Poetry.

What does the Poetry MCP do?
The Poetry MCP allows you to manage Python Poetry projects and environments. It supports common tasks such as dependency management, package installation, and virtual environment creation within a Poetry project context.
How do I install the Poetry MCP in a client like Cline?
Installation typically involves adding the Poetry MCP's repository URL to your client's configuration and then enabling it. Refer to your specific MCP client's documentation for detailed installation and configuration instructions.
Does the Poetry MCP require any API keys or authentication?
No, the Poetry MCP as described uses 'none' for authentication. It does not require API keys, OAuth, or other credentials to operate, making it straightforward to use.
What are the key capabilities exposed by the Poetry MCP?
Its primary capabilities revolve around managing Python project dependencies, publishing packages, and isolating project environments. These functions streamline Python development workflows for projects using Poetry.
Is there any cost associated with using the Poetry MCP?
The Poetry MCP itself is open-source and community-provided. Any costs would depend on your specific hardware, software, and infrastructure choices for running your MCP client and Python development environment.
What is a common limitation of the Poetry MCP?
A common limitation is that it specifically targets projects using the Poetry package manager. It would not be suitable for Python projects managed with other tools like pip or Conda without additional steps or converters.

Install Poetry

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "poetry": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-poetry"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "poetry": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-poetry"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "poetry": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-poetry"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.