<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Deepak Pant</title>
    <description>The latest articles on DEV Community by Deepak Pant (@deepakpant93).</description>
    <link>https://dev.to/deepakpant93</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2680741%2Fa6339957-0143-4a30-b017-9957631317b8.png</url>
      <title>DEV Community: Deepak Pant</title>
      <link>https://dev.to/deepakpant93</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/deepakpant93"/>
    <language>en</language>
    <item>
      <title>Top 5 MCP Servers Every Developer Should Have in VS Code</title>
      <dc:creator>Deepak Pant</dc:creator>
      <pubDate>Tue, 18 Aug 2026 14:45:45 +0000</pubDate>
      <link>https://dev.to/deepakpant93/top-5-mcp-servers-every-developer-should-have-in-vs-code-2d1a</link>
      <guid>https://dev.to/deepakpant93/top-5-mcp-servers-every-developer-should-have-in-vs-code-2d1a</guid>
      <description>&lt;p&gt;The &lt;strong&gt;Model Context Protocol (MCP)&lt;/strong&gt;, open-sourced by Anthropic, has transformed how we interact with AI in our development workflows. Instead of treating your AI coding assistant as an isolated text generator in VS Code (via extensions like Cline, Roo Code, GitHub Copilot, Continue, or Claude Dev), MCP turns it into an &lt;strong&gt;agentic powerhouse&lt;/strong&gt; that can interact directly with your files, browsers, issue trackers, and internal knowledge bases.&lt;/p&gt;

&lt;p&gt;If you're already using MCP-compatible extensions in VS Code, your next step is choosing the right servers to supercharge your daily productivity. &lt;/p&gt;

&lt;p&gt;Here are the &lt;strong&gt;Top 5 MCP servers&lt;/strong&gt; every developer should configure in VS Code today.&lt;/p&gt;




&lt;h2&gt;
  
  
  1. 📄 MarkItDown MCP Server (Token-Saver for Documents)
&lt;/h2&gt;

&lt;h3&gt;
  
  
  What it is
&lt;/h3&gt;

&lt;p&gt;Developed around Microsoft's open-source &lt;code&gt;markitdown&lt;/code&gt; utility, this MCP server seamlessly converts binary and rich document formats—including &lt;strong&gt;PDFs, Word documents (&lt;code&gt;.docx&lt;/code&gt;), Excel spreadsheets (&lt;code&gt;.xlsx&lt;/code&gt;), PowerPoint slides (&lt;code&gt;.pptx&lt;/code&gt;), and audio transcripts&lt;/strong&gt;—into clean, structured &lt;strong&gt;Markdown&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why every developer needs it
&lt;/h3&gt;

&lt;p&gt;LLMs are text engines. When you feed a 40-page technical specification PDF or architecture document into an LLM context window:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;PDFs and complex docs consume &lt;strong&gt;massive token volumes&lt;/strong&gt; due to raw formatting and OCR overhead.&lt;/li&gt;
&lt;li&gt;Models often get distracted or hallucinate due to poorly parsed layout artifacts.&lt;/li&gt;
&lt;li&gt;You burn through your API budget rapidly.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;MarkItDown solves this:&lt;/strong&gt; It strips away the layout bloat and produces pristine GitHub-flavored Markdown. Your AI assistant parses the distilled text instantly using a fraction of the original token footprint.&lt;/p&gt;

&lt;h3&gt;
  
  
  Typical Use Cases
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Feeding API spec PDFs or vendor datasheets into your coding prompt.&lt;/li&gt;
&lt;li&gt;Parsing product requirement documents (PRDs) stored in &lt;code&gt;.docx&lt;/code&gt; format into actionable task lists.&lt;/li&gt;
&lt;li&gt;Reading legacy business logic tables from Excel spreadsheets directly into code.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Example Config (&lt;code&gt;mcp.json&lt;/code&gt;)
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"microsoft/markdown"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"stdio"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"uvx"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"args"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="s2"&gt;"markdown-mcp@0.1a4"&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"gallery"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://api.mcp.github.com"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"version"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"1.0.0"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  2. 🌐 Playwright MCP Server (Headless Browser &amp;amp; Web Automation)
&lt;/h2&gt;

&lt;h3&gt;
  
  
  What it is
&lt;/h3&gt;

&lt;p&gt;The &lt;strong&gt;Playwright MCP Server&lt;/strong&gt; (or Puppeteer MCP equivalent) equips your AI assistant with a full headless/headed Chromium browser engine. It gives the model the ability to visit URLs, take screenshots, click buttons, fill out forms, and scrape dynamic single-page applications (SPAs).&lt;/p&gt;

&lt;h3&gt;
  
  
  Why every developer needs it
&lt;/h3&gt;

&lt;p&gt;Static web fetchers (&lt;code&gt;curl&lt;/code&gt; / &lt;code&gt;fetch&lt;/code&gt;) fail on modern client-rendered web applications (React, Angular, Vue). When debugging frontend issues, testing authentication flows, or checking the latest documentation for an unindexed library, your AI needs real browser execution.&lt;/p&gt;

&lt;p&gt;With Playwright MCP:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Your AI assistant can launch your local dev server (&lt;code&gt;http://localhost:3000&lt;/code&gt;), inspect console logs, take visual screenshots of a broken UI component, and fix the CSS/JSX automatically.&lt;/li&gt;
&lt;li&gt;It can read live web documentation even if the page requires JavaScript execution.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Typical Use Cases
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Automated Visual Verification:&lt;/strong&gt; Prompt: &lt;em&gt;"Check my newly generated modal on &lt;code&gt;http://localhost:5173&lt;/code&gt;, take a screenshot, and tell me if the dark theme padding looks right."&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;End-to-End Smoke Testing:&lt;/strong&gt; Verifying user sign-up and login forms during refactoring.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scraping dynamic docs:&lt;/strong&gt; Extracting code snippets from dynamic single-page docs sites.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Example Config (&lt;code&gt;mcp.json&lt;/code&gt;)
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"microsoft/playwright-mcp"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"stdio"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"npx"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"args"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="s2"&gt;"@playwright/mcp@latest"&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"gallery"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://api.mcp.github.com"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"version"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"0.0.1-seed"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  3. 🐙 GitHub MCP Server (Official Repo &amp;amp; PR Management)
&lt;/h2&gt;

&lt;h3&gt;
  
  
  What it is
&lt;/h3&gt;

&lt;p&gt;The official &lt;strong&gt;GitHub MCP server&lt;/strong&gt; connects your LLM directly to GitHub's REST &amp;amp; GraphQL APIs and GitHub Copilot services.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why every developer needs it
&lt;/h3&gt;

&lt;p&gt;Developers spend a huge portion of their day switching between VS Code and the browser just to check open PR reviews, find issue numbers, reference code in remote repositories, or inspect CI/CD failure logs.&lt;/p&gt;

&lt;p&gt;With the GitHub MCP server configured:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You can query, review, and comment on pull requests directly from your AI chat.&lt;/li&gt;
&lt;li&gt;The assistant can create branches, commit code, open pull requests with detailed descriptions, and link issues automatically without you leaving VS Code.&lt;/li&gt;
&lt;li&gt;It can search issues and remote repositories across your organization for existing solutions.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Typical Use Cases
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Instant PR Generation:&lt;/strong&gt; &lt;em&gt;"Review my local branch changes against &lt;code&gt;main&lt;/code&gt;, write a comprehensive summary, and open a draft Pull Request on GitHub."&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Issue Triage:&lt;/strong&gt; &lt;em&gt;"Summarize issue #142 and propose a code change to fix the reported bug."&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Remote Code Search:&lt;/strong&gt; &lt;em&gt;"Search our org's &lt;code&gt;auth-service&lt;/code&gt; repo on GitHub to see how they handle JWT token rotation."&lt;/em&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Example Config (&lt;code&gt;mcp.json&lt;/code&gt;)
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"io.github.github/github-mcp-server"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"http"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"url"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://api.githubcopilot.com/mcp/"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"gallery"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://api.mcp.github.com"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"version"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"1.9.0"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  4. 🏢 Atlassian Rovo MCP Server (Jira &amp;amp; Confluence Integration)
&lt;/h2&gt;

&lt;h3&gt;
  
  
  What it is
&lt;/h3&gt;

&lt;p&gt;The &lt;strong&gt;Atlassian Rovo / Atlassian MCP server&lt;/strong&gt; links your local AI agent to your company's &lt;strong&gt;Jira&lt;/strong&gt; tracking and &lt;strong&gt;Confluence&lt;/strong&gt; knowledge base systems via Atlassian's remote MCP endpoint.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why every developer needs it
&lt;/h3&gt;

&lt;p&gt;Almost every enterprise engineering team organizes work around Jira tickets and Confluence documentation. Before MCP, you had to manually copy acceptance criteria from Jira, paste them into your AI chat, copy the response, and switch back to update the status.&lt;/p&gt;

&lt;p&gt;With the Atlassian MCP server:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You simply pass the Jira issue key (e.g., &lt;code&gt;JIRA-4089&lt;/code&gt;). The AI reads the user story, acceptance criteria, edge cases, and attached comments in real time.&lt;/li&gt;
&lt;li&gt;It searches company Confluence wikis to ground its responses in your team's internal architecture guidelines, design standards, and deployment runbooks.&lt;/li&gt;
&lt;li&gt;With proper API permissions, it can update ticket statuses, log work notes, or create subtasks upon code completion.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Typical Use Cases
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Requirement-Driven Coding:&lt;/strong&gt; &lt;em&gt;"Read Jira ticket &lt;code&gt;BACK-2041&lt;/code&gt;, inspect our repository, and implement the requested endpoint with unit tests."&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Internal Knowledge Grounding:&lt;/strong&gt; &lt;em&gt;"Search Confluence for our standard RBAC implementation guidelines and ensure my new middleware adheres to company policy."&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Sprint Documentation:&lt;/strong&gt; &lt;em&gt;"Summarize the changes in my working directory and post an update comment on Jira ticket &lt;code&gt;FE-892&lt;/code&gt;."&lt;/em&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Example Config (&lt;code&gt;mcp.json&lt;/code&gt;)
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"com.atlassian/atlassian-mcp-server"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"http"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"url"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://mcp.atlassian.com/v1/mcp"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"gallery"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://api.mcp.github.com"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"version"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"1.1.3"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  5. 📊 Mermaid MCP Server (Architecture &amp;amp; Flow Diagramming)
&lt;/h2&gt;

&lt;h3&gt;
  
  
  What it is
&lt;/h3&gt;

&lt;p&gt;The &lt;strong&gt;Mermaid MCP Server&lt;/strong&gt; enables your AI assistant to generate, validate, and render complex diagrams (Flowcharts, Sequence diagrams, Entity Relationship (ER) diagrams, Class diagrams, and State charts) using &lt;strong&gt;Mermaid.js&lt;/strong&gt; syntax directly in your IDE.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why every developer needs it
&lt;/h3&gt;

&lt;p&gt;Code architecture is inherently visual. Explaining complex asynchronous workflows, microservice boundaries, or database schemas with plain text often leads to misunderstandings.&lt;/p&gt;

&lt;p&gt;With the Mermaid MCP server:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The AI creates accurate, syntax-validated Mermaid diagrams while drafting architecture proposals or READMEs.&lt;/li&gt;
&lt;li&gt;It visualizes data flows and call sequences before you write a single line of implementation code.&lt;/li&gt;
&lt;li&gt;It renders and exports diagrams directly in VS Code, allowing you to iterate on system design collaboratively with your AI.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Typical Use Cases
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Sequence Diagram Generation:&lt;/strong&gt; &lt;em&gt;"Analyze this authentication middleware and render a Mermaid sequence diagram showing the token validation lifecycle."&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Database ERDs:&lt;/strong&gt; &lt;em&gt;"Inspect my Prisma / TypeORM schema and generate an ER diagram for the database documentation."&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Workflow Visualization:&lt;/strong&gt; &lt;em&gt;"Generate a flowchart explaining the retry and dead-letter queue mechanism in our event consumer."&lt;/em&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Example Config (&lt;code&gt;mcp.json&lt;/code&gt;)
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"modelcontextprotocol/server-mermaid"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"stdio"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"npx"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"args"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="s2"&gt;"@modelcontextprotocol/server-mermaid"&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"gallery"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://api.mcp.github.com"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"version"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"0.1.0"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  📦 Complete &lt;code&gt;mcp.json&lt;/code&gt; Configuration
&lt;/h2&gt;

&lt;p&gt;Here is the full consolidated &lt;code&gt;mcp.json&lt;/code&gt; you can add directly to your VS Code MCP configuration:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"microsoft/markdown"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"stdio"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"uvx"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"args"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="s2"&gt;"markdown-mcp@0.1a4"&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"gallery"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://api.mcp.github.com"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"version"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"1.0.0"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"com.atlassian/atlassian-mcp-server"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"http"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"url"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://mcp.atlassian.com/v1/mcp"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"gallery"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://api.mcp.github.com"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"version"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"1.1.3"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"microsoft/playwright-mcp"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"stdio"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"npx"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"args"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="s2"&gt;"@playwright/mcp@latest"&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"gallery"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://api.mcp.github.com"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"version"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"0.0.1-seed"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"io.github.github/github-mcp-server"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"http"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"url"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://api.githubcopilot.com/mcp/"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"gallery"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://api.mcp.github.com"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"version"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"1.9.0"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"modelcontextprotocol/server-mermaid"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"stdio"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"npx"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"args"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="s2"&gt;"@modelcontextprotocol/server-mermaid"&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"gallery"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://api.mcp.github.com"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"version"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"0.1.0"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  🚀 Summary Matrix: How They Work Together
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;MCP Server&lt;/th&gt;
&lt;th&gt;Core Capability&lt;/th&gt;
&lt;th&gt;Biggest Benefit&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;MarkItDown&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Document to Markdown Converter&lt;/td&gt;
&lt;td&gt;Massive token &amp;amp; cost savings; clean document ingestion&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Playwright&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Headless Browser Automation&lt;/td&gt;
&lt;td&gt;Visual verification, dynamic SPA scraping &amp;amp; UI testing&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;GitHub&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Official Repo &amp;amp; PR Management&lt;/td&gt;
&lt;td&gt;In-editor PR creation, issue triage &amp;amp; remote repo search&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Atlassian Rovo&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Jira &amp;amp; Confluence Bridge&lt;/td&gt;
&lt;td&gt;Direct access to acceptance criteria &amp;amp; internal wikis&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Mermaid&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Diagram Generator &amp;amp; Validator&lt;/td&gt;
&lt;td&gt;Instant visual architecture, sequence &amp;amp; ER diagrams&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  💡 Quick Tips for Getting the Most Out of MCP in VS Code
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Mind Your Secrets:&lt;/strong&gt; Always use environment variables for sensitive API tokens (GitHub PAT, Atlassian API tokens) rather than hardcoding them in shared config files.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Selective Tool Activation:&lt;/strong&gt; While it is tempting to enable dozens of MCP servers, activate only the tools you need for the current task to keep tool-definition tokens lean and avoid prompt clutter.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Combine Servers for Compound Workflows:&lt;/strong&gt; 

&lt;ul&gt;
&lt;li&gt;
&lt;em&gt;Example:&lt;/em&gt; Have &lt;strong&gt;Atlassian Rovo&lt;/strong&gt; pull requirements from Jira -&amp;gt; &lt;strong&gt;MarkItDown&lt;/strong&gt; ingest the attached PDF spec -&amp;gt; write the code -&amp;gt; &lt;strong&gt;Mermaid&lt;/strong&gt; generate the architecture flow -&amp;gt; &lt;strong&gt;GitHub&lt;/strong&gt; create the PR with the diagram embedded!&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  💬 Over to You!
&lt;/h2&gt;

&lt;p&gt;Which MCP servers have become essential in your daily coding setup? Have you built a custom MCP server for your team? Let's discuss in the comments below!&lt;/p&gt;

</description>
      <category>vscode</category>
      <category>mcp</category>
      <category>ai</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Expressly - Text Transformation App</title>
      <dc:creator>Deepak Pant</dc:creator>
      <pubDate>Mon, 20 Jan 2025 10:50:12 +0000</pubDate>
      <link>https://dev.to/deepakpant93/expressly-text-transformation-app-2g8m</link>
      <guid>https://dev.to/deepakpant93/expressly-text-transformation-app-2g8m</guid>
      <description>&lt;p&gt;Transform your text effortlessly with Expressly, a cutting-edge multi-agent AI application that adapts your content to perfectly match your desired format, tone, and target audience. Whether you're crafting professional LinkedIn posts, engaging Instagram captions, or technical documentation, Expressly has you covered.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Makes Expressly Special?
&lt;/h2&gt;

&lt;p&gt;Expressly leverages the power of CrewAI and advanced language models to understand and transform your text intelligently. The app shines with its versatility, offering a wide range of customization options:&lt;/p&gt;

&lt;h3&gt;
  
  
  Format Options
&lt;/h3&gt;

&lt;p&gt;From tweets and blog posts to formal reports and product descriptions, Expressly adapts your content to fit any medium. Choose from multiple formats including posts, articles, emails, and more.&lt;/p&gt;

&lt;h3&gt;
  
  
  Tone Control
&lt;/h3&gt;

&lt;p&gt;Express yourself exactly how you want with tone options ranging from professional and confident to friendly and inspirational. The app ensures your message maintains the perfect voice for your audience.&lt;/p&gt;

&lt;h3&gt;
  
  
  Target Audience Optimization
&lt;/h3&gt;

&lt;p&gt;Whether you're writing for LinkedIn professionals, Instagram followers, or technical readers, Expressly tailors your content for maximum impact on your chosen platform.&lt;/p&gt;

&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;p&gt;Try Expressly today! Here's where you can find us:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Live Demo&lt;/strong&gt;: Experience Expressly directly on &lt;a href="https://huggingface.co/spaces/deepakpant/expressly-app" rel="noopener noreferrer"&gt;Hugging Face Spaces&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Docker Image&lt;/strong&gt;: Deploy your own instance from &lt;a href="https://hub.docker.com/r/deepak93p/expressly-app" rel="noopener noreferrer"&gt;Docker Hub&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Source Code&lt;/strong&gt;: Explore the technical details on our &lt;a href="https://github.com/DeepakPant93/expressly-app" rel="noopener noreferrer"&gt;GitHub repository&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwnw2ohdmm2w6isqcva1j.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwnw2ohdmm2w6isqcva1j.jpeg" alt="Expressly HF Page" width="800" height="291"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Built for Everyone
&lt;/h2&gt;

&lt;p&gt;Whether you're a content creator, professional communicator, or someone who wants to improve their writing, Expressly makes text transformation accessible and efficient. The intuitive interface allows you to input your text and receive perfectly formatted output in seconds.&lt;/p&gt;

&lt;p&gt;Our AI-powered engine understands context and nuance, ensuring that your message isn't just reformatted, but thoughtfully transformed to maintain its essence while meeting your specific requirements.&lt;/p&gt;

&lt;p&gt;Want to learn more about how Expressly can transform your content creation process? Visit our GitHub repository for comprehensive documentation, or try it yourself on Hugging Face Spaces. For deployment options, check out our Docker image on Docker Hub.&lt;/p&gt;

&lt;p&gt;Transform your text today with Expressly - where AI meets creativity to power your communication needs.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Note: This is a living project, continuously evolving with new features and improvements. Stay updated by following our GitHub repository.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>ai</category>
      <category>machinelearning</category>
      <category>opensource</category>
    </item>
    <item>
      <title>Agent.ai Agent - LinkedIn Profile Optimizer</title>
      <dc:creator>Deepak Pant</dc:creator>
      <pubDate>Thu, 16 Jan 2025 10:19:05 +0000</pubDate>
      <link>https://dev.to/deepakpant93/agentai-agent-linkedin-profile-optimizer-1f42</link>
      <guid>https://dev.to/deepakpant93/agentai-agent-linkedin-profile-optimizer-1f42</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://srv.buysellads.com/ads/long/x/T6EK3TDFTTTTTT6WWB6C5TTTTTTGBRAPKATTTTTTWTFVT7YTTTTTTKPPKJFH4LJNPYYNNSZL2QLCE2DPPQVCEI45GHBT" rel="noopener noreferrer"&gt;Agent.ai&lt;/a&gt; Challenge: Productivity-Pro Agent (&lt;a href="https://dev.to/challenges/agentai"&gt;See Details&lt;/a&gt;)&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;I developed an AI agent designed to analyze LinkedIn profiles and provide actionable insights for optimization. The agent works by taking a LinkedIn profile URL, analyzing its content, and delivering personalized suggestions to enhance the profile's appeal and visibility. It also generates an optimized LinkedIn profile template, offering users a practical guide to implement improvements.&lt;/p&gt;

&lt;p&gt;This agent focuses on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Crafting compelling summaries.&lt;/li&gt;
&lt;li&gt;Highlighting relevant skills and achievements.&lt;/li&gt;
&lt;li&gt;Improving keyword optimization for better searchability.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The result is a well-rounded, professional LinkedIn profile that helps users stand out in their field.&lt;/p&gt;




&lt;h2&gt;
  
  
  Demo
&lt;/h2&gt;

&lt;p&gt;You can experience the AI agent in action by visiting this URL: &lt;a href="https://agent.ai/profile/6kqmkpyz1rqxkz2z" rel="noopener noreferrer"&gt;LinkedIn Profile Optimizer Agent&lt;/a&gt;. Test it yourself and see how it transforms a standard LinkedIn profile into an optimized version.&lt;/p&gt;

&lt;p&gt;For a step-by-step walkthrough, check out the demo video on YouTube: &lt;a href="https://www.youtube.com/watch?v=05K6Lnb34wg" rel="noopener noreferrer"&gt;Watch the Demo&lt;/a&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  Agent.ai Experience
&lt;/h2&gt;

&lt;p&gt;My experience with Agent.ai has been phenomenal. The platform makes it incredibly easy to build AI agents, even for individuals with minimal technical expertise. Here’s what stood out for me:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Ease of Use:&lt;/strong&gt; The intuitive interface ensures that anyone can start building AI agents quickly, without needing advanced coding skills.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Built-in Plugins:&lt;/strong&gt; Agent.ai provides a wide range of pre-built plugins, allowing users to define workflows and integrate solutions seamlessly.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Customizability:&lt;/strong&gt; Despite its simplicity, the platform offers flexibility to tailor agents according to specific requirements.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Support and Documentation:&lt;/strong&gt; Comprehensive documentation and responsive support make the development process smooth and efficient.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Agent.ai’s tools empowered me to focus on problem-solving rather than getting bogged down by technical complexities. It’s a game-changer for anyone looking to build intelligent, functional AI agents effortlessly.&lt;/p&gt;




&lt;p&gt;In conclusion, while building AI agents can present challenges, leveraging user-friendly platforms like Agent.ai can significantly streamline the process. With the right tools and mindset, creating impactful AI solutions becomes an achievable goal for everyone.&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>agentaichallenge</category>
      <category>ai</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>Unlocking the Power of GitHub Copilot: Your AI Pair Programmer</title>
      <dc:creator>Deepak Pant</dc:creator>
      <pubDate>Wed, 15 Jan 2025 06:40:21 +0000</pubDate>
      <link>https://dev.to/deepakpant93/unlocking-the-power-of-github-copilot-your-ai-pair-programmer-1dm8</link>
      <guid>https://dev.to/deepakpant93/unlocking-the-power-of-github-copilot-your-ai-pair-programmer-1dm8</guid>
      <description>&lt;p&gt;In the ever-evolving world of software development, having a reliable, intelligent assistant can transform how developers write and optimize code. &lt;strong&gt;GitHub Copilot&lt;/strong&gt;, branded as your "AI pair programmer," is designed to do just that. Powered by advanced AI models like OpenAI's GPT-4 and Anthropic's Claude, GitHub Copilot assists with everything from generating code snippets to reviewing scripts. Let’s dive into what makes GitHub Copilot an invaluable tool and how it can enhance your development workflow.&lt;/p&gt;




&lt;h3&gt;
  
  
  What is GitHub Copilot?
&lt;/h3&gt;

&lt;p&gt;GitHub Copilot is an AI-driven code assistant that integrates seamlessly into popular code editors like Visual Studio Code (VS Code). It assists developers in real-time, offering contextually relevant code suggestions, generating test cases, reviewing existing code, and even debugging. Whether you’re a seasoned developer or a beginner, Copilot empowers you to write cleaner, more efficient code faster.&lt;/p&gt;




&lt;h3&gt;
  
  
  How to Install GitHub Copilot
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;1. Install the Copilot Extension for VS Code&lt;/strong&gt;&lt;br&gt;
Download and install the GitHub Copilot extension for VS Code by visiting the &lt;a href="https://marketplace.visualstudio.com/items?itemName=GitHub.copilot" rel="noopener noreferrer"&gt;Marketplace&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Add Copilot Chats&lt;/strong&gt;&lt;br&gt;
For an enhanced experience, install the &lt;a href="https://marketplace.visualstudio.com/items?itemName=GitHub.copilot-chat" rel="noopener noreferrer"&gt;GitHub Copilot Chat extension&lt;/a&gt;. This allows for interactive conversations with Copilot directly within your editor.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Explore More Extensions&lt;/strong&gt;&lt;br&gt;
Check out a variety of other extensions available on &lt;a href="https://github.com/marketplace?type=apps&amp;amp;copilot_app=true" rel="noopener noreferrer"&gt;GitHub Marketplace&lt;/a&gt;, or create your own custom Copilot extension tailored to your project needs.&lt;/p&gt;


&lt;h3&gt;
  
  
  Features and Capabilities
&lt;/h3&gt;

&lt;p&gt;GitHub Copilot isn’t just a basic code generator. It provides a suite of features designed to streamline every phase of software development. Here are some highlights:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Intelligent Code Suggestions&lt;/strong&gt;&lt;br&gt;
Copilot offers relevant code suggestions based on your current context. Whether you're starting a new project or refining an existing one, Copilot's AI-powered recommendations save you time and effort.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Generate Unit Tests&lt;/strong&gt;&lt;br&gt;
Use the &lt;code&gt;@workspace /tests&lt;/code&gt; command to automatically generate unit tests for your code. This ensures better test coverage with minimal manual effort.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Fix and Optimize Code&lt;/strong&gt;&lt;br&gt;
Identify issues in your code and receive fixes using the &lt;code&gt;/fix&lt;/code&gt; command. Copilot doesn't just point out problems – it suggests actionable solutions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Code Documentation&lt;/strong&gt;&lt;br&gt;
Generate documentation for your codebase to improve readability and maintainability. With Copilot, even large projects can stay well-documented with minimal overhead.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. Multi-File Editing&lt;/strong&gt;&lt;br&gt;
Copilot’s multi-file editing feature allows you to apply changes or add functions across multiple files simultaneously. This is especially useful for refactoring or introducing new features consistently.&lt;/p&gt;


&lt;h3&gt;
  
  
  How GitHub Copilot Agents Work
&lt;/h3&gt;

&lt;p&gt;GitHub Copilot incorporates specialized &lt;strong&gt;agents&lt;/strong&gt; to assist with tasks in your workspace, editor, terminal, and GitHub itself. These agents understand the context of your current task and provide actionable assistance, making your development process smoother and more efficient.&lt;/p&gt;
&lt;h4&gt;
  
  
  1. Workspace Agent (&lt;code&gt;@workspace&lt;/code&gt;)
&lt;/h4&gt;

&lt;p&gt;The workspace agent helps you interact with your codebase effectively. It can explain, fix, and enhance the code you’re working on, as well as set up new projects and files.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Available Commands:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;/explain&lt;/code&gt;: Explains how the code in your active editor works, making it easier to understand complex logic or unfamiliar sections.
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;/tests&lt;/code&gt;: Automatically generates unit tests for the selected code, saving time and ensuring robust test coverage.
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;/fix&lt;/code&gt;: Analyzes the code in your editor, identifies issues, and proposes fixes.
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;/new&lt;/code&gt;: Scaffolds code for a new file or project in your workspace.
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;/newNotebook&lt;/code&gt;: Creates a new Jupyter Notebook within your workspace for data science and machine learning projects.
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;/fixTestFailure&lt;/code&gt;: Proposes a solution for a failing test.
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;/setupTests&lt;/code&gt; (Experimental): Sets up tests in your project.&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;
  
  
  2. VS Code Agent (&lt;code&gt;@vscode&lt;/code&gt;)
&lt;/h4&gt;

&lt;p&gt;The VS Code agent is tailored for enhancing your experience within Visual Studio Code. It supports navigation, debugging, and workspace queries.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Available Commands:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;/search&lt;/code&gt;: Generates query parameters for workspace searches, helping you locate files or functions quickly.
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;/startDebugging&lt;/code&gt; (Experimental): Automatically generates a launch configuration and initiates debugging, streamlining the debugging process.&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;
  
  
  3. Terminal Agent (&lt;code&gt;@terminal&lt;/code&gt;)
&lt;/h4&gt;

&lt;p&gt;The terminal agent supports terminal-based tasks, providing explanations for commands or outputs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Available Commands:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;/explain&lt;/code&gt;: Explains terminal commands or outputs, helping you understand cryptic responses or errors.&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;
  
  
  4. GitHub Agent (&lt;code&gt;@github&lt;/code&gt;)
&lt;/h4&gt;

&lt;p&gt;The GitHub agent connects to GitHub’s vast resources, such as web searches, code repositories, and enterprise knowledge bases.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Available Commands:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;/search&lt;/code&gt;: Searches through your repository or GitHub resources for relevant documentation, code snippets, or issues.&lt;/li&gt;
&lt;/ul&gt;
&lt;h5&gt;
  
  
  Using Contextual Variables
&lt;/h5&gt;

&lt;p&gt;To improve the accuracy of Copilot’s responses, you can provide the following variables for additional context:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;#editor&lt;/code&gt;: The visible source code in the active editor.
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;#selection&lt;/code&gt;: The current selection in the active editor.
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;#terminalLastCommand&lt;/code&gt;: The last command run in the active terminal.
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;#terminalSelection&lt;/code&gt;: The current selection in the active terminal.
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;#file&lt;/code&gt;: Select a specific file in the workspace.&lt;/li&gt;
&lt;/ul&gt;


&lt;h3&gt;
  
  
  Customizing GitHub Copilot
&lt;/h3&gt;

&lt;p&gt;For tailored assistance, you can create a &lt;code&gt;.github/copilot-instructions.md&lt;/code&gt; file in your repository. Here, you can define specific guidelines to align Copilot with your project standards. For example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;We use Bazel for managing our Java dependencies, not Maven, so when talking about Java packages, always give me instructions and code samples that use Bazel.

We always write JavaScript with double quotes and tabs for indentation, so when your responses include JavaScript code, please follow those conventions.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h3&gt;
  
  
  Why Should Developers Use GitHub Copilot?
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;1. Save Time and Boost Productivity&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Reduce the time spent on repetitive coding tasks and focus on solving complex problems.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Improve Code Quality&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Generate test cases, review your code, and maintain high-quality standards effortlessly.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Learn as You Code&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;For beginners, Copilot acts as a mentor, providing explanations and best practices.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Collaborative Programming&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Think of Copilot as an always-available teammate offering feedback, suggestions, and solutions.&lt;/p&gt;




&lt;h3&gt;
  
  
  Conclusion
&lt;/h3&gt;

&lt;p&gt;GitHub Copilot is revolutionizing software development by providing developers with an AI-powered assistant that adapts to their needs. Whether you’re writing your first line of code or managing a large-scale enterprise project, Copilot ensures you work smarter, not harder. By leveraging its capabilities, you can enhance productivity, reduce errors, and learn new techniques – all from within your editor.&lt;/p&gt;




&lt;h3&gt;
  
  
  Learn More
&lt;/h3&gt;

&lt;p&gt;Explore more about GitHub Copilot and its features:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/features/copilot" rel="noopener noreferrer"&gt;GitHub Copilot&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/features/copilot/extensions#resources" rel="noopener noreferrer"&gt;Copilot Extensions&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://docs.github.com/en/copilot/customizing-copilot/adding-custom-instructions-for-github-copilot" rel="noopener noreferrer"&gt;Customizing GitHub Copilot&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.twitch.tv/videos/2348604506" rel="noopener noreferrer"&gt;How to make the most of GitHub Copilot by Cassidy&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Ready to take your coding skills to the next level? Start using GitHub Copilot today and experience the future of development!&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>github</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
