$npx skillfedfor your agent

agents-mcp

Set up Model Context Protocol servers to give Claude and Codex access to databases, APIs, GitHub, and custom tools with fine-grained permission controls. Choose from official servers for PostgreSQL, SQLite, and popular platforms, or build custom TypeScript servers for internal integrations.

agents-mcp configures MCP servers that extend Claude and Codex with secure database, API, and custom tool access.

AI-generated summary based on this skill's SKILL.md

★ 69  17 MITupdated by vasilyu1983

Decision gist · record as of 2026-07-13

agents-mcp configures MCP servers that extend Claude and Codex with secure database, API, and custom tool access. Set up Model Context Protocol servers to give Claude and Codex access to databases, APIs, GitHub, and custom tools with fine-grained permission controls. Choose from official servers for PostgreSQL, SQLite, and popular platforms, or build custom TypeScript servers for internal integrations.

manual: git clone https://github.com/vasilyu1983/AI-Agents-public → cp -r AI-Agents-public/frameworks/shared-skills/skills/agents-mcp ~/.claude/skills/agents-mcp
frameworks/shared-skills/skills/agents-mcp/SKILL.md · version 3cd432b1

Use it when

  • agents-mcp includes PostgreSQL MCP server configuration for secure database access.
  • agents-mcp supports building custom MCP servers for proprietary tools and internal APIs using TypeScript.

Verify before relying

Read SKILL.md below before installing (10 files). Open directory: indexed for reading, not audited.

Same gist for agents: .md · .json

Install

vasilyu1983/AI-Agents-public/agents-mcp · repository language: Python

Open directory. Skills are indexed for reading, not audited. Review a skill's body before installing it.

Frequently asked questions

AI-generated answers based on this skill's SKILL.md and metadata

How do I set up MCP servers for Claude?

agents-mcp provides a complete setup guide for deploying Model Context Protocol servers that extend Claude's capabilities. Start by installing the MCP SDK, configuring your server in Claude's settings file, and choosing your transport layer (stdio or HTTP). Official servers for PostgreSQL, SQLite, GitHub, and other platforms are available; select the ones matching your integration needs, then authenticate and test connectivity before production use.

How can I connect Claude to PostgreSQL via MCP?

agents-mcp includes PostgreSQL MCP server configuration for secure database access. Install the PostgreSQL server package, provide connection credentials (host, port, database, user), and configure scoped permissions to limit which tables and operations Claude can access. Test the connection using MCP health checks, then enable in your Claude client settings to query and manipulate data safely.

How do I build a custom MCP server in TypeScript?

agents-mcp supports building custom MCP servers for proprietary tools and internal APIs using TypeScript. Use the MCP SDK to define your server's tools, resources, and prompts; implement request handlers for each capability; choose stdio or HTTP transport; and deploy alongside your agent. The quick-start template includes authentication, error handling, and logging patterns for production readiness.

What permission controls does agents-mcp provide for tool access?

agents-mcp enables fine-grained permission management through allow/deny rules and scoped filesystem access. Define which tools Claude can invoke, restrict database queries to specific tables, limit file operations to designated directories, and audit all tool invocations. Security guardrails prevent unauthorized data exposure and enforce least-privilege access for both built-in and custom MCP servers.

How do I troubleshoot MCP connection and authentication failures?

agents-mcp provides diagnostics for common MCP issues: verify transport setup (stdio vs HTTP), check authentication credentials and token expiration, review server logs for initialization errors, and run health checks to confirm connectivity. Connection failures often stem from misconfigured credentials, network isolation, or missing server dependencies—agents-mcp documentation includes resolution steps for each scenario.

When should I use MCP instead of direct API calls in my agent?

agents-mcp's Model Context Protocol offers advantages over direct API integration: centralized permission management, standardized tool discovery, built-in authentication handling, and audit logging. Use MCP for production agents needing security controls, multi-service orchestration, or compliance requirements; direct calls suit simple prototypes or single-service integrations where overhead isn't justified.

SKILL.md

Rendered from the published skill. Quoted content, verbatim.

MCP (Model Context Protocol) — Advisor & Reference

Specification: https://modelcontextprotocol.io/specification/2025-11-25 (November 2025)

When to Use MCP (Decision Tree)

Scenario Use MCP? Why
Query PostgreSQL/MySQL/SQLite Yes Official servers exist, read-only by default
Access filesystem outside workspace Yes Scoped allowlists, audit trail
GitHub/Linear/Slack/Notion integration Yes Vendor MCP servers available
One-off HTTP API call No Use WebFetch or Bash curl
Internal API with auth Maybe Build custom MCP server if repeated, otherwise direct call
Need write access to production DB Caution Prefer read-only; if writes needed, scope tightly

Rule of thumb: Use MCP when (1) an official/community server exists, (2) you need audit/permission control, or (3) you'll reuse the integration across sessions.

Quick Start (Local stdio via npx)

1) Create or edit

(truncated - see the full file via the links below)

File tree — 10 files
frameworks/shared-skills/skills/agents-mcp/SKILL.md
frameworks/shared-skills/skills/agents-mcp/assets/api/template-mcp-api.md
frameworks/shared-skills/skills/agents-mcp/assets/database/template-mcp-database.md
frameworks/shared-skills/skills/agents-mcp/assets/deployment/template-mcp-docker.md
frameworks/shared-skills/skills/agents-mcp/assets/filesystem/template-mcp-filesystem.md
frameworks/shared-skills/skills/agents-mcp/data/sources.json
frameworks/shared-skills/skills/agents-mcp/references/mcp-custom.md
frameworks/shared-skills/skills/agents-mcp/references/mcp-patterns.md
frameworks/shared-skills/skills/agents-mcp/references/mcp-security.md
frameworks/shared-skills/skills/agents-mcp/references/mcp-servers.md

Let your AI agent find skills like this

Example. Real query, live index.

You found this page by searching. An agent finds it by wishing: SkillFed indexes 56,283 agent skills by what they can do, searchable in plain language.

wish › “Set up and configure MCP servers to extend Claude/Codex agent capabilities”

Give your agent the search over MCP, or paste the wish link into any chat. No install? Search from any chat →

Related skills

mcp-server-builder
by patricio0312rev · patricio0312rev/skills

MCP Server Builder guides you through creating Model Context Protocol servers that extend Claude's capabilities with custom tools, resources, and prompts. The skill covers the full workflow from defining your server's purpose and choosing a transport layer through designing tool schemas, adding optional resources, and deploying to Claude Desktop or the API. It includes TypeScript project setup, basic server structure with request handlers, tool definition patterns with schema validation, and resource management examples.

MITupdated Jan 2026
★ 52repo stars
Mcp Quickstart Scaffolder
by Aradotso · Aradotso/mcp-skills

Mcp Quickstart Scaffolder creates fully functional MCP servers from scratch in 30 seconds, complete with example tools, resources, prompts, and tests. It supports TypeScript and Python, generates tools from OpenAPI specs or curl commands, and deploys directly to Cloudflare Workers with a single command.

no license declared → metadata onlyupdated Jul 2026
★ 5repo stars
Essential Mcp Servers Reference
by Aradotso · Aradotso/mcp-skills

Navigate a curated collection of 50 high-quality MCP servers across nine categories, complete with verified installation syntax for Claude, Gemini, and Codex. Learn selection strategies by role, security principles for safe deployment, and environment configuration for each server type.

no license declared → metadata onlyupdated Jul 2026
★ 5repo stars
Mcp
by kimny1143 · kimny1143/claude-code-template

Mcp guides you through building and configuring Model Context Protocol servers for Claude Code. Add project-specific tools, connect external services, and automate workflows by defining custom tools with clear schemas and request handlers. Includes setup at both project and user levels, practical examples like test runners and database queries, and best practices for performance.

no license declared → metadata onlyfor claude-codeupdated Jul 2026
★ 4repo stars
model-context
by bobmatnyc · bobmatnyc/claude-mpm-skills

Model Context Protocol (MCP) is an open standard for connecting AI assistants to external data and capabilities. This skill teaches you to build servers that expose tools (callable functions), resources (readable data), and prompts (reusable templates) using TypeScript or Python SDKs, with native Claude Desktop integration.

MITupdated Jul 2026
★ 62repo stars
Agent Sdk Python
by dawiddutoit · dawiddutoit/custom-claude

Agent SDK Python is the official Python SDK for constructing production-ready AI agents with autonomous capabilities. It supports one-shot queries, interactive conversations, custom MCP tools, permission controls, context loading from CLAUDE.md files, error handling, hooks, and agent delegation—all through a straightforward API designed for .py files and agent architectures.

no license declared → metadata onlyupdated Jan 2026
★ 1repo stars

More skills mcp (MIT) · Datawhale Agent Learning Hub (NOASSERTION) · Microsoft Agent365 Devtools Cli (NOASSERTION) · agent-teams-playbook (MIT) · mcp-integration-patterns (Apache-2.0) · mcp-builder (MIT) · agent-builder (MIT)

Tags
protocol-integrationserver-configurationcontext-managementtool-orchestrationpermission-scopingdatabase-connectivitycustom-toolingsecurity-hardeningtransport-layeragent-extensibility