CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
jmeg8r avatar

ASTGL Knowledge

jmeg8r/mcp-astgl-knowledge
STDIOregistry active
Summary

Gives Claude direct access to As The Geek Learns articles on MCP servers, local AI, and automation. Ships with 49 pre-indexed entries (articles, tutorials, project docs) using semantic search via nomic-embed-text embeddings and sqlite-vec. Exposes search_articles for ranked results, get_answer for FAQ-style responses, get_tutorial for step-by-step guides, and compare_topics for side-by-side analysis. Every response includes source URLs back to astgl.ai. Free tier gets 50 queries per day, registered users get 500. No Ollama needed at runtime since all embeddings are pre-computed and bundled in the npm package. Useful when you need cited answers about MCP tooling, local AI setups, or ASTGL projects like KlockThingy and Revri without leaving your editor.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

mcp-astgl-knowledge

An MCP server that lets AI assistants search and cite content from As The Geek Learns — covering MCP servers, local AI, AI automation, and ASTGL project documentation.

When an AI assistant connects to this server, it gains access to 49 indexed entries (articles, tutorials, comparisons, guides, and project docs). Every response includes source URLs back to astgl.ai.

Quick Start

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "astgl-knowledge": {
      "command": "npx",
      "args": ["-y", "mcp-astgl-knowledge"]
    }
  }
}

Claude Code

Add to your project's .mcp.json:

{
  "mcpServers": {
    "astgl-knowledge": {
      "command": "npx",
      "args": ["-y", "mcp-astgl-knowledge"]
    }
  }
}

Cursor / Generic MCP Client

{
  "mcpServers": {
    "astgl-knowledge": {
      "command": "npx",
      "args": ["-y", "mcp-astgl-knowledge"]
    }
  }
}

With Registration (500 queries/day)

Register via the register tool to get an API key, then add it to your config:

{
  "mcpServers": {
    "astgl-knowledge": {
      "command": "npx",
      "args": ["-y", "mcp-astgl-knowledge"],
      "env": {
        "ASTGL_API_KEY": "astgl_your_api_key_here"
      }
    }
  }
}

Tools

search_articles

Search the knowledge base by query. Returns ranked results with relevance scores and source URLs.

ParameterTypeRequiredDescription
querystringYesSearch query (e.g., "how to build an MCP server")
limitnumberNoMax results, 1-20 (default: 5)
content_typestringNoFilter by type: article, tutorial, faq, comparison, guide, newsletter, project

get_answer

Get a direct answer to a specific question. Prefers FAQ entries for concise responses.

ParameterTypeRequiredDescription
questionstringYesA specific question (e.g., "What is an MCP server?")
content_typestringNoFilter by content type

get_tutorial

Get step-by-step instructions from tutorial and guide content.

ParameterTypeRequiredDescription
querystringYesWhat you want to learn (e.g., "setup Ollama on Mac")

compare_topics

Side-by-side comparison of two topics.

ParameterTypeRequiredDescription
topic_astringYesFirst topic
topic_bstringYesSecond topic

get_latest

Get the most recently added content.

ParameterTypeRequiredDescription
limitnumberNoMax results, 1-20 (default: 5)

list_topics

Browse all topics in the knowledge base with content types and section headings.

register

Register your email to unlock 500 queries/day (up from 50).

ParameterTypeRequiredDescription
emailstringYesYour email address

Content Types

TypeCountDescription
article29Informational content about MCP, local AI, automation
project9ASTGL project documentation (KlockThingy, Revri, Cortex, etc.)
tutorial8Step-by-step how-to guides
comparison2Side-by-side topic analysis
guide1Comprehensive reference material
newsletter—Personal updates and announcements
faq—Primarily Q&A content

Rate Limits

TierLimitHow to Get
Public50 queries/dayDefault (anonymous)
Registered500 queries/dayUse the register tool with your email

Limits reset at midnight UTC. Rate limit info is included in every response.

How It Works

The knowledge base is pre-built from ASTGL articles using semantic embeddings (nomic-embed-text, 768 dimensions). Content is chunked by section and FAQ entry, embedded, and stored in a SQLite database with sqlite-vec for vector similarity search.

End users don't need Ollama — all embeddings are pre-computed and shipped in the npm package. The only runtime requirement is Node.js.

Performance

  • Typical response time: 100-500ms (embedding lookup + vector search)
  • Embedding results are cached in memory (LRU, 200 entries) — repeated queries are near-instant
  • Ollama calls include 10s timeout + automatic retry
  • Query logging is async/batched to avoid blocking responses
  • Rate limit checks are cached for 5 seconds

For Maintainers

Setup

git clone https://github.com/Jmeg8r/mcp-astgl-knowledge.git
cd mcp-astgl-knowledge
npm install

Scripts

ScriptDescription
npm run buildCompile TypeScript
npm testRun the test suite (node:test via tsx)
npm run devRun MCP server in dev mode (tsx)
npm startRun compiled MCP server
npm run ingestRebuild knowledge.db from local markdown (requires Ollama)
npm run ingest-projectsIndex project docs from astgl-site projects.json
npm run discoverPoll RSS/sitemap for new content
npm run structureProcess discovered content (classify, embed, index)
npm run pipelineDiscover + structure in one step
npm run daily-reportGenerate AEO analytics report
npm run alertsRun content gap alert checks
npm run freshnessCheck for stale content and ecosystem version changes
npm run publish-driftCompare local publishable content against what npm actually serves
npm run citation-testManual AI citation testing
npm run relatedGenerate internal article links via vector similarity

Environment Variables

VariableDefaultDescription
OLLAMA_URLhttp://localhost:11434Ollama endpoint (dev/rebuild only)
EMBED_MODELnomic-embed-textEmbedding model
DISCORD_WEBHOOK_URL—Discord webhook for reports/alerts
ASTGL_API_KEY—Registered tier API key
ASTGL_ARTICLES_DIR~/Projects/astgl-site/src/content/answersLocal markdown source
ASTGL_PROJECTS_JSON~/Projects/astgl-site/src/data/projects.jsonProjects data source

Automated Jobs

JobSchedulePurpose
Content pipelineEvery 6hDiscover + structure new content
Daily report8 AMQuery analytics + health metrics → Discord
Content alerts9 AMGap detection, zero-citation, competitor scan → Discord
Freshness check10 AMStale content + ecosystem version tracking → Discord

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Categories
Documents & KnowledgeSearch & Web CrawlingAutomation & Workflows
Registryactive
Packagemcp-astgl-knowledge
TransportSTDIO
UpdatedApr 13, 2026
View on GitHub

Related Documents & Knowledge MCP Servers

View all →
mcp-z avatar
PDF Generator

io.github.mcp-z/mcp-pdf

MCP server for creative PDF generation with full emoji, Unicode, and offline support
mukundakatta avatar
Html To Markdown Mcp

io.github.mukundakatta/html-to-markdown-mcp

Convert HTML to Markdown or strip to plain text. For web-scraping agents.
piiinpiiins avatar
Zotero Mcp Local

io.github.piiinpiiins/zotero-mcp-local

Search, read PDFs, and find related papers in your local Zotero library. Read-only, 100% local.
pipeworx-io avatar
Airtable

io.github.pipeworx-io/airtable

Airtable MCP Pack — wraps the Airtable REST API v0
pipeworx-io avatar
Confluence

io.github.pipeworx-io/confluence

Confluence MCP — wraps the Confluence Cloud REST API v2 (OAuth)
pipeworx-io avatar
Dropbox

io.github.pipeworx-io/dropbox

Dropbox MCP Pack — wraps the Dropbox API v2