npm mcp-astgl-knowledgestdioupdated 27d ago
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.
What can you do with ASTGL Knowledge?
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.
| Parameter | Type | Required | Description |
|---|---|---|---|
query |
string | Yes | Search query (e.g., "how to build an MCP server") |
limit |
number | No | Max results, 1-20 (default: 5) |
content_type |
string | No | Filter 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.
| Parameter | Type | Required | Description |
|---|---|---|---|
question |
string | Yes | A specific question (e.g., "What is an MCP server?") |
content_type |
string | No | Filter by content type |
get_tutorial
Get step-by-step instructions from tutorial and guide content.
| Parameter | Type | Required | Description |
|---|---|---|---|
query |
string | Yes | What you want to learn (e.g., "setup Ollama on Mac") |
compare_topics
Side-by-side comparison of two topics.
| Parameter | Type | Required | Description |
|---|---|---|---|
topic_a |
string | Yes | First topic |
topic_b |
string | Yes | Second topic |
get_latest
Get the most recently added content.
| Parameter | Type | Required | Description |
|---|---|---|---|
limit |
number | No | Max 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).
| Parameter | Type | Required | Description |
|---|---|---|---|
email |
string | Yes | Your email address |
Content Types
| Type | Count | Description |
|---|---|---|
| article | 29 | Informational content about MCP, local AI, automation |
| project | 9 | ASTGL project documentation (KlockThingy, Revri, Cortex, etc.) |
| tutorial | 8 | Step-by-step how-to guides |
| comparison | 2 | Side-by-side topic analysis |
| guide | 1 | Comprehensive reference material |
| newsletter | ā | Personal updates and announcements |
| faq | ā | Primarily Q&A content |
Rate Limits
| Tier | Limit | How to Get |
|---|---|---|
| Public | 50 queries/day | Default (anonymous) |
| Registered | 500 queries/day | Use 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
| Script | Description |
|---|---|
npm run build |
Compile TypeScript |
npm test |
Run the test suite (node:test via tsx) |
npm run dev |
Run MCP server in dev mode (tsx) |
npm start |
Run compiled MCP server |
npm run ingest |
Rebuild knowledge.db from local markdown (requires Ollama) |
npm run ingest-projects |
Index project docs from astgl-site projects.json |
npm run discover |
Poll RSS/sitemap for new content |
npm run structure |
Process discovered content (classify, embed, index) |
npm run pipeline |
Discover + structure in one step |
npm run daily-report |
Generate AEO analytics report |
npm run alerts |
Run content gap alert checks |
npm run freshness |
Check for stale content and ecosystem version changes |
npm run publish-drift |
Compare local publishable content against what npm actually serves |
npm run citation-test |
Manual AI citation testing |
npm run related |
Generate internal article links via vector similarity |
Environment Variables
| Variable | Default | Description |
|---|---|---|
OLLAMA_URL |
http://localhost:11434 |
Ollama endpoint (dev/rebuild only) |
EMBED_MODEL |
nomic-embed-text |
Embedding model |
DISCORD_WEBHOOK_URL |
ā | Discord webhook for reports/alerts |
ASTGL_API_KEY |
ā | Registered tier API key |
ASTGL_ARTICLES_DIR |
~/Projects/astgl-site/src/content/answers |
Local markdown source |
ASTGL_PROJECTS_JSON |
~/Projects/astgl-site/src/data/projects.json |
Projects data source |
Automated Jobs
| Job | Schedule | Purpose |
|---|---|---|
| Content pipeline | Every 6h | Discover + structure new content |
| Daily report | 8 AM | Query analytics + health metrics ā Discord |
| Content alerts | 9 AM | Gap detection, zero-citation, competitor scan ā Discord |
| Freshness check | 10 AM | Stale content + ecosystem version tracking ā Discord |
License
MIT
Install
Add ASTGL Knowledge to your client. Pick the one you use.
claude mcp add mcp-astgl-knowledge -- npx -y mcp-astgl-knowledgecodex mcp add mcp-astgl-knowledge -- npx -y mcp-astgl-knowledgeamp mcp add mcp-astgl-knowledge -- npx -y mcp-astgl-knowledge{
"mcpServers": {
"mcp-astgl-knowledge": {
"command": "npx",
"args": [
"-y",
"mcp-astgl-knowledge"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp-astgl-knowledge": {
"command": "npx",
"args": [
"-y",
"mcp-astgl-knowledge"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp-astgl-knowledge","command":"npx","args":["-y","mcp-astgl-knowledge"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp-astgl-knowledge": {
"command": "npx",
"args": [
"-y",
"mcp-astgl-knowledge"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp-astgl-knowledge": {
"command": "npx",
"args": [
"-y",
"mcp-astgl-knowledge"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp-astgl-knowledge": {
"command": "npx",
"args": [
"-y",
"mcp-astgl-knowledge"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp-astgl-knowledge": {
"type": "local",
"command": "npx",
"args": [
"-y",
"mcp-astgl-knowledge"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp-astgl-knowledge": {
"command": {
"path": "npx",
"args": [
"-y",
"mcp-astgl-knowledge"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y mcp-astgl-knowledgeRun `goose configure`, choose **Add Extension ā Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance25/25
- Trust6/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 19 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint ā no local install
Version history
| Versions | Published |
|---|---|
| 1.3.1Latest | Aug 1, 2026 |
| 1.3.0 | Jul 30, 2026 |
| 1.1.0 | Apr 13, 2026 |
| 1.0.2 | Apr 13, 2026 |