drio
Open app

AgentForgeMCP

Source

A template MCP server to easily deploy tools, resources, and prompts for agents. From the AgentForge team

Catalog onlyCatalog onlySTDIO

Overview

AgentForgeMCP is a template server designed to facilitate the deployment of tools, resources, and prompts for agents, created by the AgentForge team.

To use AgentForgeMCP, clone the repository from GitHub, configure the server settings, and deploy the necessary tools and resources for your agents.

  • Easy deployment of agent tools and resources - Customizable server settings - Support for various agent prompts
  1. Setting up a development environment for AI agents.
  2. Deploying multiple tools for agent-based applications.
  3. Streamlining the process of managing agent resources.

Add to your AI client

Use these steps to connect AgentForgeMCP in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

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

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

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

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

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

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "agentforgemcp-databassgit": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-agentforgemcp-databassgit"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

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

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

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

FAQ

What is the purpose of AgentForgeMCP?

AgentForgeMCP serves as a template to simplify the deployment of agent-related tools and resources.

Is AgentForgeMCP free to use?

Yes! AgentForgeMCP is available under the MIT license, making it free to use and modify.

Where can I find the documentation?

Documentation can be found in the GitHub repository at https://github.com/DataBassGit/AgentForgeMCP.