Agent Plugins Marketplace
All plugins

example-plugin

v0.1.0

Example Agent Plugin demonstrating the Agent Plugins v1.0.0 package format: Python skills plus a containerized FastMCP server exposed over Streamable HTTP.

Agent Plugins2 Skills1 MCP serverStreamable HTTP

By Your NameLicense: MIT0 GitHub starsUpdated 1 hour ago

Directory evidence

Runtimes
Agent Plugins
Parsed components
3 skill or MCP entries
Source updated
Aug 28, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Get the plugin

git clone https://github.com/markbsigler/plugins

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is example-plugin/.

This listing currently publishes only the generic Agent Plugins format. Automatic install commands for other clients are not generated yet.

Plugin files

example-plugin/
├── plugin.json
├── skills/example-skill/SKILL.md
├── skills/table-stats/SKILL.md
└── mcp.json

Included Skills2

example-skillskills/example-skill/SKILL.md

Counts words, characters, and lines in text the user provides, using a bundled Python script. Use this as a starting template when adding a new skill to this repository, or when a user asks for a quick word/character/line count of some text.

table-statsskills/table-stats/SKILL.md

Summarizes a CSV/TSV file's row count and per-column name, data type, and null count using polars. Use this when the user asks for a quick profile, summary, or overview of a delimited data file (CSV, TSV, etc.), such as "what's in this CSV" or "summarize this data file".

MCP servers1

example-serverStreamable HTTP
url
https://mcp.example.com/example-plugin/mcp

Plugin manifests1

example-plugin/plugin.json
{
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
  "name": "example-plugin",
  "version": "0.1.0",
  "description": "Example Agent Plugin demonstrating the Agent Plugins v1.0.0 package format: Python skills plus a containerized FastMCP server exposed over Streamable HTTP.",
  "author": {
    "name": "Your Name",
    "url": "https://example.com"
  },
  "homepage": "https://example.com/example-plugin",
  "repository": "https://github.com/your-org/plugins",
  "license": "MIT",
  "keywords": [
    "example",
    "scaffold",
    "template"
  ]
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[example-plugin on Agent Plugins Marketplace](https://pluginsmp.com/plugins/example-plugin-3)