Agent Construct
A multi-tool MCP server implementation for agent tool management.
Overview
Agent Construct is a multi-tool Model Context Protocol (MCP) server implementation designed for managing agent tools and providing a standardized interface for AI applications to access tools and context.
To use Agent Construct, clone the repository, install the dependencies, set up the environment variables, and run the server using Python.
- Full compliance with the Model Context Protocol (MCP) specification. - Dynamic tool registration and discovery mechanism. - High-performance asynchronous server built with FastAPI. - Real-time updates via Server-Sent Events (SSE). - Extensible request handler architecture for various MCP operations.
- Managing AI tools for various applications.
- Facilitating communication between AI models and external tools.
- Providing a centralized hub for tool discovery and execution.
Add to your AI client
Use these steps to connect Agent Construct 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": {
"agent-construct-batteryshark": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-agent-construct-batteryshark"
]
}
}
}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": {
"agent-construct-batteryshark": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-agent-construct-batteryshark"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"agent-construct-batteryshark": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-agent-construct-batteryshark"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"agent-construct-batteryshark": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-agent-construct-batteryshark"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"agent-construct-batteryshark": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-agent-construct-batteryshark"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"agent-construct-batteryshark": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-agent-construct-batteryshark"
]
}
}
}FAQ
What programming language is Agent Construct built with?
Agent Construct is built using Python.
Is there a license for Agent Construct?
Yes, it is licensed under the MIT License.
How can I contribute to Agent Construct?
Contributions are welcome! You can submit a Pull Request or open an issue to discuss changes.