π¦
Andrew MCP
test
0 installs
1 stars
Trust: 41 β Fair
Devtools
Installation
npx andrew-mcpAsk AI about Andrew MCP
Powered by Claude Β· Grounded in docs
I know everything about Andrew MCP. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
Remote MCP Server Authless
This project hosts an MCP (Model Context Protocol) agent on Cloudflare Workers. It exposes endpoints that return podcast summaries from Airtable and tweet history from KV storage. The server responds through SSE (server-sent events) for real-time delivery.
Techniques and Patterns
- Serverless Worker Runtime β The code runs on Cloudflare Workers.
- Runtime Data Validation β Object schemas are defined using Zod.
- Airtable Integration β Airtable records are fetched and validated before being returned.
- CSV Parsing β Tweet history is stored as a CSV file and parsed on demand.
- Durable Object / KV Storage β The worker accesses KV storage and Durable Objects to persist state.
- SSE Endpoints β The agent exposes
/sseand/sse/messageendpoints for streaming responses via Server-Sent Events.
Libraries and Tools
- @modelcontextprotocol/sdk β provides the MCP server implementation.
- agents β helper utilities for defining MCP agents.
- Airtable β client for accessing Airtable API.
- wrangler β used for building and deploying to Cloudflare Workers.
- vitest β included for testing (though no tests are present yet).
- biome β formatting and linting.
No custom fonts are referenced in the repository.
Project Layout
.
βββ public
β βββ favicon.ico
βββ src
β βββ index.ts
β βββ schema.ts
βββ .vscode
β βββ settings.json
βββ biome.json
βββ package.json
βββ package-lock.json
βββ processed_awilkinson_data.csv
βββ tsconfig.json
βββ worker-configuration.d.ts
- public β contains static assets for the worker.
- src β main TypeScript source.
src/index.tsdefines the worker entrypoint and MCP tools. - processed_awilkinson_data.csv β historical tweet data used by the
search_tweetstool. - worker-configuration.d.ts β Cloudflare environment type definitions.
