MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

P
Produtividade Ias Mcps Ai Weekend 2026 01

Slides e conteúdos da apresentação "Produtividade no Desenvolvimento com IAs: descomplicando tarefas do dia a dia com MCP Servers".

Created 1/31/2026
Updated 3 months ago
Repository documentation and setup instructions

produtividade-ias-mcps_ai-weekend-2026-01

Slides e conteúdos da apresentação "Produtividade no Desenvolvimento com IAs: descomplicando tarefas do dia a dia com MCP Servers".

Tecnologias e tópicos abordados: Inteligência Artificial, LLMs, MCP, AI Agents, Containers, Visual Studio Code, GitHub Copilot, .NET, Docker, NuGet, npm, Grafana k6, Docker MCP Catalog, Azure API Management, Microsoft Agent Framework, APIsec MCP Audit, GitHub Actions, Azure DevOps, PostgreSQL...

Exemplos utilizados:

Configurações completas para simular um ambiente local de desenvolvimento com vários MCPs ativados no Visual Studio Code e integrados com GitHub Copilot: https://github.com/renatogroffe/vscode-mcp-dev-enviroment-2026-01

Exemplo incompleto de mcp.json (utilizado durante a demo):

{
	"servers": {
		"nuget": {
			"type": "stdio",
			"command": "dnx",
			"args": [
				"NuGet.Mcp.Server@1.1.29",
				"--yes"
			]
		},
		"docker": {
			"command": "docker",
			"args": [
				"run",
				"-i",
				"--rm",
				"-e",
				"HUB_PAT_TOKEN=${input:hub_pat_token}",
				"mcp/dockerhub"
			],
			"type": "stdio"
		},
		"github": {
		  "type": "http",
		  "url": "https://api.githubcopilot.com/mcp/"
		}
	},
	"inputs": [
		{
			"id": "hub_pat_token",
			"type": "promptString",
			"description": "Docker Hub Personal Access Token",
			"password": true
		}
	]
}
Quick Setup
Installation guide for this server

Installation Command (package not published)

git clone https://github.com/renatogroffe/produtividade-ias-mcps_ai-weekend-2026-01
Manual Installation: Please check the README for detailed setup instructions and any additional dependencies required.

Cursor configuration (mcp.json)

{ "mcpServers": { "renatogroffe-produtividade-ias-mcps-ai-weekend-2026-01": { "command": "git", "args": [ "clone", "https://github.com/renatogroffe/produtividade-ias-mcps_ai-weekend-2026-01" ] } } }