project-explorer-mcp

project-explorer-mcp

Analyzes Python project structure by exploring directory trees, extracting outlines from Python and Markdown files, and inspecting OpenAPI specifications.

Category
访问服务器

README

project-explorer-mcp

MCP server toolkit for analyzing the structure of a Python project.

Installation and Launch

Prerequisites

Install to Cursor IDE

{
 "mcpServers": {
   "project-explorer": {
     "command": "uv",
     "args": [
       "--directory",
       "path/to/project-explorer-mcp",
       "run",
       "project-explorer-mcp"
      ]
    }
  }
}

All tools are enabled by default: dir_tree, python_outline, markdown_outline, openapi_list_operations, openapi_get_operation_details

Configuration

The server can be configured using environment variables with the prefix PROJECT_EXPLORER_MCP__:

  • PROJECT_EXPLORER_MCP__DEFAULT_OUTPUT_FORMAT: Set the default output format for all tools (json or markdown). Default is markdown.

Example:

export PROJECT_EXPLORER_MCP__DEFAULT_OUTPUT_FORMAT=json

Output Formats

All tools support two output formats:

  • markdown (default): Returns structured markdown text that is more token-efficient for AI models to understand
  • json: Returns structured JSON data for programmatic processing

You can override the default format per tool call using the output_format parameter.

Server Tools

dir_tree

  • Description: Returns a file and folder tree with depth limitation.

  • Parameters:

    • root_path: str — path to the root of the tree
    • max_depth: int — maximum traversal depth (default: 1)
    • output_format: str | None — output format: json or markdown (default: server setting)
  • Output Example (markdown format):

    ## Directory Tree: /path/to/project
    
    

    tests/test_sample.py tests/test_sample.md tests/test_dir_tree.md

  • Output Example (json format):

    {
      "root": "/path/to/project/tests",
      "tree": [
        {
          "name": "test_dir_tree.md",
          "type": "file"
        },
        {
          "name": "test_sample.md",
          "type": "file"
        },
        {
          "name": "test_sample.py",
          "type": "file"
        }
      ]
    }
    

python_outline

  • Description: Returns an outline for each Python file (imports, classes, functions, docstrings).

  • Parameters:

    • paths: list[str] — list of paths to Python files
    • output_format: str | None — output format: json or markdown (default: server setting)
  • Output Example (markdown format):

    ## tests/test_sample.py
    
    **Module docstring:**
    Module for outline test.
    
    The module contains an example class and function.
    
    ### Imports
    
    - `os` (line 3)
    - `sys` (line 4)
    
    ### Classes
    
    #### `Example` (line 7)
    
    Example class.
    
    **Methods:**
    - `method` (line 9)
      - Class method.
    
    ### Functions
    
    #### `func` (line 15)
    
    Example function.
    
  • Output Example (json format):

    {'tests/test_sample.py': {'docstring': 'Module for outline test.\n\nThe module contains an example class and function.', 'imports': [{'name': 'os', 'line': 3}, {'name': 'sys', 'line': 4}], 'classes': [{'name': 'Example', 'line': 7, 'docstring': 'Example class.', 'methods': [{'name': 'method', 'line': 9, 'docstring': 'Class method.'}]}], 'functions': [{'name': 'func', 'line': 15, 'docstring': 'Example function.'}]}}
    

markdown_outline

  • Description: Returns an outline for each Markdown file (headings, levels, line).

  • Parameters:

    • paths: list[str] — list of paths to Markdown files
    • output_format: str | None — output format: json or markdown (default: server setting)
  • Output Example (markdown format):

    ## tests/test_sample.md
    
    ### Document Structure
    
    - **H1:** Heading 1 (line 1)
      - **H2:** Heading 2 (line 3)
        - **H3:** Heading 3 (line 5)
      - **H2:** Second H2 (line 9)
    
  • Output Example (json format):

    {'tests/test_sample.md': [{'level': 1, 'text': 'Heading 1', 'line': 1}, {'level': 2, 'text': 'Heading 2', 'line': 3}, {'level': 3, 'text': 'Heading 3', 'line': 5}, {'level': 2, 'text': 'Second H2', 'line': 9}]}
    

openapi_list_operations

  • Description: Lists all operations from an OpenAPI specification file.

  • Parameters:

    • spec_path: str — absolute path to the OpenAPI JSON or YAML file
    • output_format: str | None — output format: json or markdown (default: server setting)
  • Output Example (markdown format):

    # OpenAPI Operations
    
    | Method | Path     | Operation ID | Summary           |
    | ------ | -------- | ------------ | ----------------- |
    | GET    | `/users` | listUsers    | List all users    |
    | POST   | `/users` | createUser   | Create a new user |
    
  • Output Example (json format):

    {
      "operations": [
        {
          "method": "GET",
          "path": "/users",
          "operation_id": "listUsers",
          "summary": "List users"
        }
      ],
      "count": 1,
      "error": null
    }
    

openapi_get_operation_details

  • Description: Gets detailed information for specific OpenAPI operations.

  • Parameters:

    • spec_path: str — absolute path to the OpenAPI JSON or YAML file
    • selectors: list[str] — list of selectors (operationId, "METHOD /path", or path)
    • expand_refs: bool — whether to resolve $ref references (default: false)
    • format_output: str | None — output format: json or markdown (default: server setting)
  • Output Example (markdown format):

    # OpenAPI Operation Details
    
    ## GET /users
    
    **Operation ID:** listUsers
    
    **Summary:** List all users
    
    **Description:**
    
    Get a list of all users
    
    ### Responses
    
    #### 200
    
    Successful response
    
    **Content Types:**
    
    - `application/json`: `{'type': 'array', 'items': {'type': 'object'}}`
    
    ---
    
  • Output Example (json format):

    {
      "details": [
        {
          "method": "GET",
          "path": "/users",
          "operation_id": "listUsers",
          "summary": "List users",
          "description": "Retrieve a list of users",
          "parameters": [
            {
              "name": "limit",
              "in": "query",
              "required": false,
              "schema": {"type": "integer"},
              "description": "Maximum number of results"
            }
          ],
          "responses": {
            "200": {
              "description": "Success",
              "content": {
                "application/json": {"type": "array", "items": {"type": "object"}}
              }
            }
          }
        }
      ],
      "count": 1,
      "error": null
    }
    

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选