home / mcp / mcp all-in-one server
A versatile MCP server offering calculation tools, webhook integrations, shared context resources, and prompt templates.
Configuration
View docs{
"mcpServers": {
"arnie936-agentic-mcp": {
"url": "https://modelcontextprotocol.example/mcp"
}
}
}You run a flexible MCP server that showcases multiple Model Context Protocol capabilities. It offers practical tools for on-the-fly calculations, webhooks for external integrations, ready-made context resources, and templates to structure AI prompts, enabling streamlined interactions with your MCP client.
You interact with the server through an MCP client to perform calculations, send data to webhooks, access contextual resources, and apply prompt templates. Practical usage patterns include: using the Calculator tool for quick arithmetic inside prompts, sending prompts to a configured webhook workflow, reading the support playbook to inform responses, and converting webinar transcripts into blog-ready content with the webinar_to_blog template.
Prerequisites you need before installation:
# Install uv (example for your OS)
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex" # Windows
# macOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | shStart the server directly using the runtime you installed. This runs the Python-based MCP server and enables stdio communication.
uv run server.pyUse the MCP Inspector to interact with your server via a web interface. This lets you test available tools, view resources, and run prompts from a browser.
npx @modelcontextprotocol/inspector uv run server.pyTo connect Claude Desktop to this MCP server, add a local stdio MCP entry that points to the runtime and script you use to start the server. The example configuration demonstrates how to set the directory path and start command so Claude can launch the server directly.
{
"mcpServers": {
"calculator": {
"command": "uv",
"args": [
"--directory",
"C:\\Users\\Your_Name\\Desktop\\mcps\\calculator_server",
"run",
"server.py"
]
}
}
}Performs basic arithmetic operations such as add, subtract, multiply, and divide. This tool can be invoked within prompts to compute results.
Sends text prompts to a configured n8n workflow and returns the response, enabling external integrations.
A structured prompt template that transforms webinar transcripts into engaging blog posts.