Model Context Protocol (MCP) servers for ACCESS-CI APIs, enabling AI assistants to interact with cyberinfrastructure resources.
This repository contains MCP servers that provide programmatic access to:
- Affinity Groups - Community groups, events, and knowledge base
- Compute Resources - Hardware specifications and resource information
- System Status - Outages, maintenance, and announcements
- Software Discovery - Available software packages across resources
# Clone and install
git clone <repository-url>
cd access_mcp
npm install
# Build all packages
npm run build
# Run tests
npm test
# Create release bundle
npm run release
access_mcp/
├── packages/
│ ├── shared/ # Shared base classes and utilities
│ ├── affinity-groups/ # Affinity Groups API server
│ ├── compute-resources/ # Compute Resources API server
│ ├── software-discovery/ # Software Discovery API server
│ └── system-status/ # System Status API server
├── docs/ # Documentation site (deployed to Netlify)
├── examples/ # Usage examples and configurations
├── scripts/ # Build and automation scripts
└── vitest.config.ts # Test configuration
- Node.js 18+
- npm
npm run build
- Build all TypeScript packagesnpm run dev
- Watch mode for developmentnpm test
- Run test suitenpm run bundle
- Create standalone executablesnpm run release
- Create release package
Use the MCP Inspector for interactive testing:
npx @modelcontextprotocol/inspector packages/affinity-groups/dist/index.js
- Create new package in
packages/
- Extend
BaseAccessServer
from@access-mcp/shared
- Implement required methods (see existing servers for examples)
- Add to
tsconfig.json
references - Update documentation
Full documentation is available at [docs-site-url] and includes:
- Installation guides for end users and developers
- API reference for each server
- Claude Desktop configuration examples
- Troubleshooting and FAQs
To work on documentation:
cd docs
npm run dev # Start development server
npm run build # Build for production
Releases include both npm packages and standalone executables:
# Create release bundle
npm run release
# Output:
# - release/access-mcp-servers-vX.X.X.zip (standalone executables)
# - Individual packages ready for npm publish
- Fork the repository
- Create a feature branch
- Make changes with tests
- Submit a pull request
See CONTRIBUTING.md for detailed guidelines.
[Your license here]
- Documentation: [Full documentation site]
- Issues: GitHub Issues
- ACCESS-CI: https://access-ci.org
- MCP Protocol: https://modelcontextprotocol.io