About Andrew MCP
Andrew MCP is an MCP server published by Alhwyn in the Developer Tools category: test. It has been installed 0 times through Conduid.
The repository has 1 stars and 0 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.
Install
npx andrew-mcpThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about Andrew MCP
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.
README
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.
README mirrored from the source repository 3 months ago. The original is authoritative.