{"name":"io.github.pcfhub/pcfhub","slug":"pcfhub","title":"PCFHub","description":"Find Power Apps PCF controls, read their docs, and validate pcfhub.json manifests.","url":"https://mcp.market/server/pcfhub","rating":null,"grade":"C","score":63,"certified":false,"status":"active","category":"productivity","tags":["productivity"],"presence":{"score":8,"stars":null,"forks":null,"downloads_week":null,"last_push_at":null,"license":null},"uptime":{"percent":100,"checks":1,"ok":1,"last_checked_at":"2026-09-19T18:16:07.879Z","last_ok_at":"2026-09-19T18:16:07.879Z","latency_ms":1209},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":null,"website":"https://pcfhub.dev/api","version":"1.0.0","remotes":[{"type":"streamable-http","url":"https://pcfhub.dev/mcp"}],"packages":[],"tools":[{"name":"get_component","description":"Everything about one control by its slug: what it does, its control type, license and repository, the current release's properties, and download links for its solutions. Use it once search or list_components has given you a slug; use get_doc_page for installation and configuration instructions, which this does not return. An unknown slug, or a version the control never released, returns an error naming the tool to call instead. include_versions and include_related each cost an extra query, so leave them off unless you need the release history or similar controls.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"slug":{"description":"The control's slug, e.g. \"pcf-tag-list\".","type":"string"},"version":{"description":"A specific release. Defaults to the latest stable one.","type":"string"},"include_versions":{"description":"Also return every release. Costs an extra query; leave off unless needed.","type":"boolean"},"include_related":{"description":"Also return similar controls. Costs an extra query; leave off unless needed.","type":"boolean"}},"required":["slug"]}},{"name":"get_doc_page","description":"Read one documentation section of a control as Markdown — installation steps, canvas or model-driven configuration, examples, limitations. Use list_doc_sections first for the sections that control publishes; use get_component instead for the structured property reference. Passing a version returns the documentation pinned to that release rather than the current page. A section the control does not document returns an error pointing at list_doc_sections, and the Markdown comes back without the frontmatter the site keeps.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"slug":{"description":"The control's slug, e.g. \"pcf-tag-list\".","type":"string"},"section":{"description":"Which section to read.","enum":["overview","installation","canvas","model_driven","api","examples","limitations","faq","migration","changelog"],"type":"string"},"version":{"description":"Documentation pinned to a specific release. Defaults to the current documentation.","type":"string"}},"required":["slug","section"]}},{"name":"list_components","description":"Browse the PCFHub catalog by category, tag, author, control type or text, paged and sorted. Use it to enumerate or narrow the catalog; use search for a plain-language question about what a control should do, and get_component for one control in full. Filters take slugs, which list_taxonomy supplies. Nothing here fails on bad input: an unrecognised sort falls back to the default, and filters matching nothing return an empty page — so read `total` and `sort` from the result rather than assuming the filters applied.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"query":{"description":"Words to match against names, taglines and descriptions.","type":"string"},"category":{"description":"A category slug, from list_taxonomy.","type":"string"},"tags":{"description":"Tag slugs, from list_taxonomy. A control must carry every tag given.","items":{"type":"string"},"type":"array"},"author":{"description":"An author slug, from list_taxonomy.","type":"string"},"control_type":{"description":"field binds one column on a form; dataset renders a view; virtual is a React control; grid_customizer changes how an editable grid renders cells.","enum":["field","dataset","virtual","grid_customizer"],"type":"string"},"sort":{"description":"Defaults to relevance when there is a query, newest otherwise.","enum":["relevance","newest","popular","name","updated"],"type":"string"},"page":{"description":"Defaults to 1.","minimum":1,"type":"integer"},"per_page":{"description":"Defaults to 24; at most 48.","minimum":1,"maximum":48,"type":"integer"}}}},{"name":"list_doc_sections","description":"The documentation sections one control publishes — overview, installation, canvas, model_driven, examples, limitations and so on — each with its title and URL. Use it before get_doc_page to learn which sections that control actually has; it returns no page content, and get_component covers the property reference. A control with no documentation and a slug that does not exist return the same error on purpose, so fall back to search rather than concluding the slug is wrong.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"slug":{"description":"The control's slug, e.g. \"pcf-tag-list\".","type":"string"}},"required":["slug"]}},{"name":"list_releases","description":"The most recent releases across every control on PCFHub, newest first: which control, which version, whether it is a prerelease, and when it shipped. Use it for what has changed hub-wide; for one control's own history call get_component with include_versions instead. Bounded by limit, at most 50, and not paged — there is no cursor, so it cannot walk back beyond the newest 50.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"limit":{"description":"How many releases. Defaults to 20.","minimum":1,"maximum":50,"type":"integer"}}}},{"name":"list_taxonomy","description":"The vocabulary list_components filters by: the category tree, the tags in use, or the authors with a published control, each with its slug and a count. Use it to turn a name a person used into a slug; it returns no controls, so pass the slug to list_components to see them. Not paged — categories come back as a full tree and authors as a full list, while tags are capped at the 500 most used.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"kind":{"description":"Which list to return.","enum":["categories","tags","authors"],"type":"string"}},"required":["kind"]}},{"name":"search","description":"Full-text search across every published PCF control and its documentation, ranked by relevance. Use it when you know what a control should do but not what it is called; use list_components instead to filter by category, tag, author or control type, and get_component when you already have a slug. Returns control and documentation hits, each with a snippet and a URL. A query that matches nothing is an empty result rather than an error, and a misspelling may be answered with results for a corrected spelling, which the result states.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"query":{"description":"What to look for, in plain words: \"barcode scanner\", \"kanban\", \"date range\".","type":"string"},"limit":{"description":"How many results to return. Defaults to 10.","minimum":1,"maximum":20,"type":"integer"}},"required":["query"]}},{"name":"validate_manifest","description":"Check a pcfhub.json against the rules PCFHub applies when it publishes a control: the schema version, the control block (namespace, constructor, type and framework), the demo's fidelity, bundle and presets, the media files it declares, and the release artifacts it expects to find. Use it while writing or reviewing that file, before a release is tagged. An invalid manifest is an ordinary result — valid false, with errors that block publishing and warnings that do not, each carrying the JSON pointer it applies to — so read the result rather than retrying. Only an empty, unreadable or oversized manifest (over 64 KB) is an error.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"manifest":{"description":"The full contents of pcfhub.json, as JSON text.","type":"string"}},"required":["manifest"]}}],"scan":{"score":63,"grade":"C","scanned_at":"2026-09-19T20:04:40.480Z","report":{"scannerVersion":"0.1.5","scannedAt":"2026-09-19T20:04:40.480Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":17,"max":20,"notes":["remote reachable in 2146ms"]},"poisoning":{"score":15,"max":15,"notes":["8 tool descriptions checked"]},"auth":{"score":10,"max":15,"notes":["open endpoint, read-only tools"]},"maintenance":{"score":3,"max":15,"notes":["no repository listed"]},"identity":{"score":2,"max":10,"notes":["no repository or website to verify"]}},"findings":[{"id":"maint.no-repo","severity":"low","component":"maintenance","title":"No source repository listed"}],"inputs":{"probes":[{"url":"https://pcfhub.dev/mcp","reachable":true,"authRequired":false,"latencyMs":2146,"serverInfo":{"name":"PCFHub","version":"1.0.0"}}],"packages":[],"repo":{"found":false},"icon":{"url":"https://pcfhub.dev/favicon.ico","source":"registry","width":64,"height":64},"presence":{"stars":null,"forks":null,"downloadsWeek":null,"license":null,"lastPushAt":null,"score":8}}}},"grade_history":[],"reviews":[]}