serverless-wiki-on-aws MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@serverless-wiki-on-aws MCP ServerSearch the wiki for 'IAM policies' and summarize the top result."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
serverless-wiki-on-aws
English | 日本語
A Markdown wiki that runs on AWS serverless services. Spaces carry their own permissions, an Amazon Bedrock assistant answers from the pages you wrote, and Obsidian and MCP clients read and write the same content through the same permission checks.
There are no EC2 instances, containers, or database clusters to keep running: the deployed stack is Lambda, API Gateway, DynamoDB, S3, CloudFront, Cognito, SQS, and Bedrock.

Reading a page. The pages shown here are sample content.
Features
Markdown pages arranged in a folder-and-page tree, one tree per space
Space-level permissions resolved on every request in the API layer — the UI, the AI assistant, the MCP server, and the sync API all pass the same check
AI assistant on Amazon Bedrock: it searches the wiki, answers from what it finds, and edits pages only after you approve the change. Amazon Nova 2 Lite answers by default;
AI_MODEL_IDswaps in another Bedrock modelSemantic search with Bedrock Knowledge Bases, S3 Vectors, and Titan Text Embeddings V2
MCP (Model Context Protocol) server at
POST /mcp, authenticated with OAuth 2.1 through Cognito, for Claude and other MCP clientsObsidian plugin that syncs a vault and a space in both directions
Attachments delivered through presigned URLs; the bucket blocks all public access
Japanese and English UI, switched in the header
Infrastructure defined with AWS Blocks, an Infrastructure-from-Code framework
Related MCP server: wikijs-mcp-server
Screens

The space list. The badge on each card is the permission the signed-in account holds on that space — a space you cannot read never appears here.

Search. Results are filtered by the same space permissions before they are returned.
Prerequisites
Node.js 24 and pnpm 11 (npm is not supported;
mise installpicks up both frommise.toml)To deploy: an AWS account, AWS CLI 2.32.0+, and Bedrock model access for Amazon Nova 2 Lite and Titan Text Embeddings V2
The CloudFormation stack CDK builds goes to whichever region your AWS profile names. It has been run against
ap-northeast-1(Tokyo); any region you pick has to offer S3 Vectors and the two Bedrock models above
Quick Start
No AWS account is needed. Every Building Block runs mocked on your machine, and the mock data lands in .bb-data/.
pnpm install
pnpm run devOpen your browser: Navigate to http://localhost:3000.
Sign-up is open against the local mock, so create an account there and sign in. Permissions are not mocked, though: a brand-new account belongs to no group and therefore sees no spaces. Make yourself an administrator the same way a real deployment does — the local store is a file the running server rewrites, so stop it first.
# Ctrl-C the dev server, then
pnpm run seed-admin -- --local --email you@example.test
pnpm run devOne thing does not run locally: the assistant talks to a mock model that replies with fixed text, so the conversation is only good for exercising the flow. Everything else — pages, permissions, search, attachments — behaves like the deployed system.
Deploy to AWS
aws login --profile <profile>
pnpm run deploy # on the very first deploy, run this twiceThe first run creates the CloudFront distribution, so its address does not exist yet while that same run is configuring the Lambda. The second run reads the address from the stack output and passes it in. After that, one run per deploy is enough.
The first account
Sign-up is closed, so a fresh deployment has nobody who can sign in. Create the first account yourself in the Cognito user pool. The password has to be 12 characters or longer and carry an upper-case letter, a lower-case letter, a digit, and a symbol.
# The pool whose name starts with your stack id
aws cognito-idp list-user-pools --max-results 10 --profile <profile> --region <region>
aws cognito-idp admin-create-user \
--user-pool-id <user-pool-id> \
--username you@example.com \
--user-attributes Name=email,Value=you@example.com Name=email_verified,Value=true \
--message-action SUPPRESS \
--profile <profile> --region <region>
# Set the password permanently, so the first sign-in is not a password-change challenge
aws cognito-idp admin-set-user-password \
--user-pool-id <user-pool-id> \
--username you@example.com \
--password '<password>' \
--permanent \
--profile <profile> --region <region>The first administrator
Sign in once in the browser. That sign-in writes your profile record and fixes the Cognito sub the next step points at, so it has to come first. Then find the permission table — its name starts with the stack id and ends in -permissions — and seed yourself.
aws dynamodb list-tables --profile <profile> --region <region>
AWS_PROFILE=<profile> pnpm run seed-admin -- --table <table-name> --email you@example.comNothing in the API raises anyone's own permissions, which is why this step is a script and not a button. Every administrator after the first one is added by an administrator, from the admin screens.
Sandbox
pnpm run sandbox puts the backend on AWS and leaves the frontend on your machine. It does not resolve the origin for you, so name it yourself.
CORS_ALLOWED_ORIGINS=http://localhost:3000 pnpm run sandboxTeardown
pnpm run sandbox:destroy # the sandbox stack, data and all
pnpm run destroy # the deployed stackA sandbox is disposable: its tables and buckets are destroyed with it. A real deployment is not. The DynamoDB table, the content bucket, and the search corpus bucket are retained on purpose, so pnpm run destroy leaves them — and their storage charges — behind for you to delete deliberately.
Configuration
Variable | Default | Purpose |
| read from the stack output by | Comma-separated origins the S3 bucket accepts presigned-URL requests from. Without a match, attachments fail in the browser. Set it explicitly when a custom domain sits in front of CloudFront or several origins serve the app. Wildcards are rejected. |
| read from the stack output by | The origin the MCP OAuth metadata advertises. Set it explicitly for a custom domain. |
|
| The Bedrock model the assistant talks to. Amazon Nova 2 Lite through its Global inference profile is the default. |
MCP clients
Copy .mcp.json.example to .mcp.json and fill in the CloudFront domain and the McpClientId stack output.
aws cloudformation describe-stacks --stack-name <stack-name> --profile <profile> \
--query 'Stacks[0].Outputs[?OutputKey==`McpClientId`].OutputValue' --output textObsidian sync
The bundled plugin in clients/obsidian/ syncs an Obsidian vault with the spaces you can read. When the two sides disagree, the wiki wins: the plugin sets your local copy aside and writes the wiki's version over it. Setup and usage are in clients/obsidian/README.md.
Project Structure
serverless-wiki-on-aws/
├── aws-blocks/ # Backend
│ ├── index.cdk.ts # Stack definition (AWS Blocks + CDK)
│ ├── index.ts # API surface the frontend calls
│ ├── access.ts # Permission resolution
│ ├── wiki-ops.ts # Page, tree, and search operations
│ ├── mcp.ts # MCP server (POST /mcp)
│ ├── ext.ts # Sync-client API (POST /ext/*)
│ └── scripts/ # deploy, sandbox, seed-admin, destroy
├── src/ # Frontend (React 19 + Vite + Cloudscape)
│ ├── views/ # Space, page, folder, search, and admin screens
│ ├── components/ # Page tree, editor, assistant drawer, search box
│ └── i18n/ # Japanese and English dictionaries
├── clients/obsidian/ # Obsidian sync plugin
├── test/e2e.test.ts # End-to-end test across the whole API
├── assets/ # Screenshots used by this README
└── README.md # This fileLimitations
Search is semantic only. There is no keyword or full-text search, so an exact string or a rare identifier may not surface the page that contains it.
Search lags a save. Re-ingestion is debounced by 30 seconds and then re-reads the whole corpus, so a page you just wrote takes a moment to become findable.
Markdown is a deliberate subset. Headings, lists, blockquotes, code, links, images, and inline marks render; GFM tables do not. Assistant replies and search excerpts are shown as plain text, so any Markdown in them appears as written.
Sign-up is closed. Accounts are created in the Cognito user pool by an operator, and no API raises anyone's own permissions.
No audit log, request rate limiting, or enforced MFA.
Learn More
AWS Blocks — the Infrastructure-from-Code framework this project is built on
Amazon Bedrock Knowledge Bases — the semantic search backend
Model Context Protocol — the protocol the
/mcpendpoint speaksCloudscape Design System — the UI components
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityAmaintenanceMCP server for MediaWiki wikis. Search, read, edit, and manage wiki content from AI assistants. Includes formatting, link checking, revision history, and markdown conversion.4321MIT
- Alicense-qualityDmaintenanceMCP server for Wiki.js integration, enabling AI assistants to create, read, update, delete, search, and move wiki pages via natural language.1MIT
- Alicense-qualityCmaintenanceMCP server for persistent, compounding markdown wikis maintained by LLMs. Enables incremental knowledge base building with interlinked pages, search, and raw source management.28MIT
- Alicense-qualityBmaintenanceMCP server that provides tools to add to, search, and manage a wiki knowledge base, enabling AI chat tools to contribute and retrieve information from the wiki via natural language prompts.MIT
Related MCP Connectors
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
MCP server for AgentDocs (agentdocs.eu): read, search, write, comment on & share Markdown docs.
MCP-native open-source Notion alternative: read & write pages, databases and kanban boards.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/coni524/serverless-wiki-on-aws'
If you have feedback or need assistance with the MCP directory API, please join our Discord server