A content exploration toolkit that helps LLMs surface high signal, unsummarized web content.
{
"mcpServers": {
"io-github-blightbow-parkour-mcp": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A content exploration toolkit that helps LLMs surface high signal, unsummarized web content.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Commit history unknown.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationProduction ready MCP server with real-time search, extract, map & crawl.
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
Browser automation with Puppeteer for web scraping and testing
The Apify MCP server enables your AI agents to extract data from social media, search engines, maps, e-commerce sites, or any other website using thousands of ready-made scrapers, crawlers, and automation tools available on the Apify Store.
MCP Security Weekly
Get CVE alerts and security updates for io.github.blightbow/parkour-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
parkour
"an activity in which people move quickly around buildings and objects in a city while performing jumps and other skilful movements, usually trying to move between points as quickly, smoothly, and safely as possible"
Parkour is a content exploration toolkit that helps LLMs surface high signal, unsummarized web content. It makes extensive use of clean APIs and Markdown conversion to enable targeted content extraction and knowledge synthesis. A rolling 2Q page cache keeps recently visited pages in memory so that follow-up requests (section extraction, BM25 search, slice retrieval, comparison pivots) are served quickly and without additional round-trips. While primarily designed for Claude Code and Claude Desktop, it should be adaptable to most agentic toolchain needs.
API integrations:
What sets Parkour apart from the standard approaches are three principles:
We design our tool outputs with the LLM in mind. The LLM is our immediate user, and if our user has a good experience the humans behind them have an even better experience.
The standout feature of Parkour is a frontmatter tool envelope that intelligently advises the LLM and steers its decisionmaking. This is a fancy way of saying "our tool payloads are prefaced with instructional YAML frontmatter". It's a technique that is simple on its face but deceptively powerful.
Parkour also intercepts requests for content from websites with robust first-party APIs. When the LLM asks to fetch a URL that belongs to a known source, the server skips the generic HTTP-fetch-and-convert path and calls the source's structured API directly. Faster, richer metadata, no scraping:
| Source | Detection | API used |
|---|---|---|
| Wikipedia | /wiki/ URLs | MediaWiki API (clean markdown, footnotes, no navboxes) |
| arXiv | /abs/, /pdf/ URLs | Atom API (authors, affiliations, categories, versions) |
| Semantic Scholar | semanticscholar.org/paper/ | S2 Graph API (bypasses CAPTCHA) |
| DOI | doi.org/10.* URLs | Content negotiation (CrossRef/DataCite metadata) |
| GitHub | github.com/* | REST API (bypasses JS SPA) |
reddit.com, redd.it | old.reddit.com .json endpoint (bypasses login wall) | |
| Discourse | x-discourse-route response header | JSON API with raw author markdown |
| IETF | rfc-editor.org, datatracker.ietf.org | RFC Editor JSON / Datatracker REST |
For example, asking Parkour to fetch https://arxiv.org/abs/1706.03762 doesn't scrape the landing page. It returns structured metadata via the Atom API, with frontmatter hints pointing to the HTML full text and a Semantic Scholar cross-reference for citation counts:
>>> web_fetch_exact("https://arxiv.org/abs/1706.03762")
---
title: Attention Is All You Need
source
... [View full README on GitHub](https://github.com/blightbow/parkour-mcp#readme)