Skip to content
| Marketplace
Sign in
Visual Studio Code>AI>DeerPromptNew to Visual Studio Code? Get it now.
DeerPrompt

DeerPrompt

deerflow

|
363 installs
| (1) | Free
Developing prompts in VSCode.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

DeerPrompt

DeerPrompt is a VSCode extension, designed to let you develop and debug prompts in VSCode.

demo

Features

  • Multi-turn Conversations - debug complex prompt chains
  • Function Calling - test tool integrations
  • MCP - connect to external tools
  • Token Counting - see what you're actually spending

Quick Start

DeerPrompt will automatically open its panel whenever you open a .md file, then you can start developing your prompts right inside it.

quick-start

Configuration

Before you get started, you’ll need to configure your LLM providers and models.

LLM Providers and models

Works with any OpenAI-compatible API. Built-in presets for OpenAI, Anthropic, DeepSeek, Doubao, etc.

config

MCP Servers (Optional)

Standard MCP

mcp

Add local tools via MCP

Here's an example about how to add a local Python function as a DeerPrompt MCP tool.

  1. Convert langchain's tool with FastMCP.

    # tools.py
    from mcp.server.fastmcp import FastMCP
    from langchain_core.tools import tool
    from langchain_mcp_adapters.tools import to_fastmcp
    
    @tool(description="Say hello to the user")
    def hello(name: str) -> str:
        return f"Hello, {name}!"
    
    mcp = FastMCP("Demo", tools=[to_fastmcp(hello)])
    
    if __name__ == "__main__":
        mcp.run()
    
  2. Add to DeerPrompt MCP config: uv run tools.py mcp-local

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft