@appsai/mcp-server 1.0.0 β 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +129 -50
- package/dist/tools.d.ts +1 -1
- package/dist/tools.js +5 -7
- package/dist/tools.js.map +1 -1
- package/logo.png +0 -0
- package/package.json +5 -2
- package/server.json +30 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 AppsAI
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,74 +1,153 @@
|
|
|
1
|
-
#
|
|
1
|
+
# MCP Registry
|
|
2
2
|
|
|
3
|
-
The
|
|
3
|
+
The MCP registry provides MCP clients with a list of MCP servers, like an app store for MCP servers.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
[**π€ Publish my MCP server**](docs/modelcontextprotocol-io/quickstart.mdx) | [**β‘οΈ Live API docs**](https://registry.modelcontextprotocol.io/docs) | [**π Ecosystem vision**](docs/design/ecosystem-vision.md) | π **[Full documentation](./docs)**
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
## Development Status
|
|
8
8
|
|
|
9
|
-
1.
|
|
10
|
-
2. Go to **Settings β Billing** and scroll to **API Keys**
|
|
11
|
-
3. Click **Create Key** and copy it (shown only once)
|
|
9
|
+
**2025-10-24 update**: The Registry API has entered an **API freeze (v0.1)** π. For the next month or more, the API will remain stable with no breaking changes, allowing integrators to confidently implement support. This freeze applies to v0.1 while development continues on v0. We'll use this period to validate the API in real-world integrations and gather feedback to shape v1 for general availability. Thank you to everyone for your contributions and patienceβyour involvement has been key to getting us here!
|
|
12
10
|
|
|
13
|
-
|
|
11
|
+
**2025-09-08 update**: The registry has launched in preview π ([announcement blog post](https://blog.modelcontextprotocol.io/posts/2025-09-08-mcp-registry-preview/)). While the system is now more stable, this is still a preview release and breaking changes or data resets may occur. A general availability (GA) release will follow later. We'd love your feedback in [GitHub discussions](https://github.com/modelcontextprotocol/registry/discussions/new?category=ideas) or in the [#registry-dev Discord](https://discord.com/channels/1358869848138059966/1369487942862504016) ([joining details here](https://modelcontextprotocol.io/community/communication)).
|
|
12
|
+
|
|
13
|
+
Current key maintainers:
|
|
14
|
+
- **Adam Jones** (Anthropic) [@domdomegg](https://github.com/domdomegg)
|
|
15
|
+
- **Tadas Antanavicius** (PulseMCP) [@tadasant](https://github.com/tadasant)
|
|
16
|
+
- **Toby Padilla** (GitHub) [@toby](https://github.com/toby)
|
|
17
|
+
- **Radoslav (Rado) Dimitrov** (Stacklok) [@rdimitrov](https://github.com/rdimitrov)
|
|
18
|
+
|
|
19
|
+
## Contributing
|
|
20
|
+
|
|
21
|
+
We use multiple channels for collaboration - see [modelcontextprotocol.io/community/communication](https://modelcontextprotocol.io/community/communication).
|
|
22
|
+
|
|
23
|
+
Often (but not always) ideas flow through this pipeline:
|
|
24
|
+
|
|
25
|
+
- **[Discord](https://modelcontextprotocol.io/community/communication)** - Real-time community discussions
|
|
26
|
+
- **[Discussions](https://github.com/modelcontextprotocol/registry/discussions)** - Propose and discuss product/technical requirements
|
|
27
|
+
- **[Issues](https://github.com/modelcontextprotocol/registry/issues)** - Track well-scoped technical work
|
|
28
|
+
- **[Pull Requests](https://github.com/modelcontextprotocol/registry/pulls)** - Contribute work towards issues
|
|
29
|
+
|
|
30
|
+
### Quick start:
|
|
31
|
+
|
|
32
|
+
#### Pre-requisites
|
|
33
|
+
|
|
34
|
+
- **Docker**
|
|
35
|
+
- **Go 1.24.x**
|
|
36
|
+
- **ko** - Container image builder for Go ([installation instructions](https://ko.build/install/))
|
|
37
|
+
- **golangci-lint v2.4.0**
|
|
38
|
+
|
|
39
|
+
#### Running the server
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
# Start full development environment
|
|
43
|
+
make dev-compose
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
This starts the registry at [`localhost:8080`](http://localhost:8080) with PostgreSQL. The database uses ephemeral storage and is reset each time you restart the containers, ensuring a clean state for development and testing.
|
|
47
|
+
|
|
48
|
+
**Note:** The registry uses [ko](https://ko.build) to build container images. The `make dev-compose` command automatically builds the registry image with ko and loads it into your local Docker daemon before starting the services.
|
|
49
|
+
|
|
50
|
+
By default, the registry seeds from the production API with a filtered subset of servers (to keep startup fast). This ensures your local environment mirrors production behavior and all seed data passes validation. For offline development you can seed from a file without validation with `MCP_REGISTRY_SEED_FROM=data/seed.json MCP_REGISTRY_ENABLE_REGISTRY_VALIDATION=false make dev-compose`.
|
|
51
|
+
|
|
52
|
+
The setup can be configured with environment variables in [docker-compose.yml](./docker-compose.yml) - see [.env.example](./.env.example) for a reference.
|
|
53
|
+
|
|
54
|
+
<details>
|
|
55
|
+
<summary>Alternative: Running a pre-built Docker image</summary>
|
|
56
|
+
|
|
57
|
+
Pre-built Docker images are automatically published to GitHub Container Registry:
|
|
14
58
|
|
|
15
59
|
```bash
|
|
16
|
-
|
|
60
|
+
# Run latest stable release
|
|
61
|
+
docker run -p 8080:8080 ghcr.io/modelcontextprotocol/registry:latest
|
|
62
|
+
|
|
63
|
+
# Run latest from main branch (continuous deployment)
|
|
64
|
+
docker run -p 8080:8080 ghcr.io/modelcontextprotocol/registry:main
|
|
65
|
+
|
|
66
|
+
# Run specific release version
|
|
67
|
+
docker run -p 8080:8080 ghcr.io/modelcontextprotocol/registry:v1.0.0
|
|
68
|
+
|
|
69
|
+
# Run development build from main branch
|
|
70
|
+
docker run -p 8080:8080 ghcr.io/modelcontextprotocol/registry:main-20250906-abc123d
|
|
17
71
|
```
|
|
18
72
|
|
|
19
|
-
|
|
73
|
+
**Available tags:**
|
|
74
|
+
- **Releases**: `latest`, `v1.0.0`, `v1.1.0`, etc.
|
|
75
|
+
- **Continuous**: `main` (latest main branch build)
|
|
76
|
+
- **Development**: `main-<date>-<sha>` (specific commit builds)
|
|
77
|
+
|
|
78
|
+
</details>
|
|
79
|
+
|
|
80
|
+
#### Publishing a server
|
|
81
|
+
|
|
82
|
+
To publish a server, we've built a simple CLI. You can use it with:
|
|
20
83
|
|
|
84
|
+
```bash
|
|
85
|
+
# Build the latest CLI
|
|
86
|
+
make publisher
|
|
87
|
+
|
|
88
|
+
# Use it!
|
|
89
|
+
./bin/mcp-publisher --help
|
|
21
90
|
```
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
91
|
+
|
|
92
|
+
See [the publisher guide](./docs/modelcontextprotocol-io/quickstart.mdx) for more details.
|
|
93
|
+
|
|
94
|
+
#### Other commands
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
# Run lint, unit tests and integration tests
|
|
98
|
+
make check
|
|
27
99
|
```
|
|
28
100
|
|
|
29
|
-
|
|
101
|
+
There are also a few more helpful commands for development. Run `make help` to learn more, or look in [Makefile](./Makefile).
|
|
30
102
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
- **Backend Development** β Manage Parse Server cloud functions
|
|
35
|
-
- **Deployment** β Deploy to AWS with one command
|
|
36
|
-
- **AWS Infrastructure** β Run any AWS CLI command, manage CloudFormation
|
|
37
|
-
- **MongoDB Atlas** β Database and cluster management
|
|
38
|
-
- **Pay-as-you-go** β Uses your AppsAI credit balance
|
|
103
|
+
<!--
|
|
104
|
+
For Claude and other AI tools: Always prefer make targets over custom commands where possible.
|
|
105
|
+
-->
|
|
39
106
|
|
|
40
|
-
##
|
|
107
|
+
## Architecture
|
|
41
108
|
|
|
42
|
-
|
|
43
|
-
|----------|-------|-------------|
|
|
44
|
-
| Project | 5 | Create, list, manage projects |
|
|
45
|
-
| Canvas | 25 | Frontend React/Next.js development |
|
|
46
|
-
| Server | 6 | Backend Parse Server development |
|
|
47
|
-
| System | 5 | Deployment & environment |
|
|
48
|
-
| AWS | 12 | Infrastructure via CLI + CloudFormation |
|
|
49
|
-
| MongoDB | 18 | Database operations |
|
|
50
|
-
| Agent | 9 | AI prompt management |
|
|
51
|
-
| Shared | 7 | Cross-category communication |
|
|
109
|
+
### Project Structure
|
|
52
110
|
|
|
53
|
-
|
|
111
|
+
```
|
|
112
|
+
βββ cmd/ # Application entry points
|
|
113
|
+
β βββ publisher/ # Server publishing tool
|
|
114
|
+
βββ data/ # Seed data
|
|
115
|
+
βββ deploy/ # Deployment configuration (Pulumi)
|
|
116
|
+
βββ docs/ # Documentation
|
|
117
|
+
βββ internal/ # Private application code
|
|
118
|
+
β βββ api/ # HTTP handlers and routing
|
|
119
|
+
β βββ auth/ # Authentication (GitHub OAuth, JWT, namespace blocking)
|
|
120
|
+
β βββ config/ # Configuration management
|
|
121
|
+
β βββ database/ # Data persistence (PostgreSQL)
|
|
122
|
+
β βββ service/ # Business logic
|
|
123
|
+
β βββ telemetry/ # Metrics and monitoring
|
|
124
|
+
β βββ validators/ # Input validation
|
|
125
|
+
βββ pkg/ # Public packages
|
|
126
|
+
β βββ api/ # API types and structures
|
|
127
|
+
β β βββ v0/ # Version 0 API types
|
|
128
|
+
β βββ model/ # Data models for server.json
|
|
129
|
+
βββ scripts/ # Development and testing scripts
|
|
130
|
+
βββ tests/ # Integration tests
|
|
131
|
+
βββ tools/ # CLI tools and utilities
|
|
132
|
+
βββ validate-*.sh # Schema validation tools
|
|
133
|
+
```
|
|
54
134
|
|
|
55
|
-
|
|
56
|
-
- **File operations** β Free
|
|
57
|
-
- **AI generation** β Model-based pricing
|
|
58
|
-
- **AWS operations** β Based on resources
|
|
59
|
-
- **MongoDB** β Based on cluster tier
|
|
60
|
-
- **Deployment** β Per deployment
|
|
135
|
+
### Authentication
|
|
61
136
|
|
|
62
|
-
|
|
137
|
+
Publishing supports multiple authentication methods:
|
|
138
|
+
- **GitHub OAuth** - For publishing by logging into GitHub
|
|
139
|
+
- **GitHub OIDC** - For publishing from GitHub Actions
|
|
140
|
+
- **DNS verification** - For proving ownership of a domain and its subdomains
|
|
141
|
+
- **HTTP verification** - For proving ownership of a domain
|
|
63
142
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
143
|
+
The registry validates namespace ownership when publishing. E.g. to publish...:
|
|
144
|
+
- `io.github.domdomegg/my-cool-mcp` you must login to GitHub as `domdomegg`, or be in a GitHub Action on domdomegg's repos
|
|
145
|
+
- `me.adamjones/my-cool-mcp` you must prove ownership of `adamjones.me` via DNS or HTTP challenge
|
|
67
146
|
|
|
68
|
-
##
|
|
147
|
+
## Community Projects
|
|
69
148
|
|
|
70
|
-
|
|
149
|
+
Check out [community projects](docs/community-projects.md) to explore notable registry-related work created by the community.
|
|
71
150
|
|
|
72
|
-
##
|
|
151
|
+
## More documentation
|
|
73
152
|
|
|
74
|
-
|
|
153
|
+
See the [documentation](./docs) for more details if your question has not been answered here!
|
package/dist/tools.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Converts OpenAI-style tool definitions to MCP format and routes tool calls.
|
|
5
5
|
*/
|
|
6
6
|
import type { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
7
|
-
export type ToolCategory = 'project' | 'canvas' | 'server' | 'system' | 'aws' | 'mongodb' | 'agent'
|
|
7
|
+
export type ToolCategory = 'project' | 'canvas' | 'server' | 'system' | 'aws' | 'mongodb' | 'agent';
|
|
8
8
|
/**
|
|
9
9
|
* Get all MCP tools
|
|
10
10
|
* Fetches tool definitions from Parse Server
|
package/dist/tools.js
CHANGED
|
@@ -15,6 +15,8 @@ function convertToMCPTool(tool, category) {
|
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
17
|
// Project management tools (new for MCP)
|
|
18
|
+
// Note: Removed additionalProperties to fix Claude Code MCP tool registration bug
|
|
19
|
+
// See: https://github.com/anthropics/claude-code/issues/2682
|
|
18
20
|
const projectTools = [
|
|
19
21
|
{
|
|
20
22
|
type: 'function',
|
|
@@ -27,7 +29,6 @@ const projectTools = [
|
|
|
27
29
|
limit: { type: 'number', description: 'Maximum number of projects to return (default 20)' },
|
|
28
30
|
},
|
|
29
31
|
required: [],
|
|
30
|
-
additionalProperties: false,
|
|
31
32
|
},
|
|
32
33
|
},
|
|
33
34
|
{
|
|
@@ -36,9 +37,10 @@ const projectTools = [
|
|
|
36
37
|
description: 'Get available starter templates for creating new projects',
|
|
37
38
|
parameters: {
|
|
38
39
|
type: 'object',
|
|
39
|
-
properties: {
|
|
40
|
+
properties: {
|
|
41
|
+
_placeholder: { type: 'string', description: 'Unused parameter (no parameters required)' },
|
|
42
|
+
},
|
|
40
43
|
required: [],
|
|
41
|
-
additionalProperties: false,
|
|
42
44
|
},
|
|
43
45
|
},
|
|
44
46
|
{
|
|
@@ -51,7 +53,6 @@ const projectTools = [
|
|
|
51
53
|
templateS3Key: { type: 'string', description: 'S3 key of the starter template to use' },
|
|
52
54
|
},
|
|
53
55
|
required: ['templateS3Key'],
|
|
54
|
-
additionalProperties: false,
|
|
55
56
|
},
|
|
56
57
|
},
|
|
57
58
|
{
|
|
@@ -64,7 +65,6 @@ const projectTools = [
|
|
|
64
65
|
projectId: { type: 'string', description: 'The project ID' },
|
|
65
66
|
},
|
|
66
67
|
required: ['projectId'],
|
|
67
|
-
additionalProperties: false,
|
|
68
68
|
},
|
|
69
69
|
},
|
|
70
70
|
{
|
|
@@ -77,7 +77,6 @@ const projectTools = [
|
|
|
77
77
|
projectId: { type: 'string', description: 'The project ID to delete' },
|
|
78
78
|
},
|
|
79
79
|
required: ['projectId'],
|
|
80
|
-
additionalProperties: false,
|
|
81
80
|
},
|
|
82
81
|
},
|
|
83
82
|
];
|
|
@@ -98,7 +97,6 @@ const categoryToolToCloudFunction = {
|
|
|
98
97
|
aws: 'executeMCPTool',
|
|
99
98
|
mongodb: 'executeMCPTool',
|
|
100
99
|
agent: 'executeMCPTool',
|
|
101
|
-
shared: 'executeMCPTool',
|
|
102
100
|
};
|
|
103
101
|
/**
|
|
104
102
|
* Get all MCP tools
|
package/dist/tools.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tools.js","sourceRoot":"","sources":["../src/tools.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"tools.js","sourceRoot":"","sources":["../src/tools.ts"],"names":[],"mappings":"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"}
|
package/logo.png
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appsai/mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Official MCP server for AppsAI - connect Claude Code to your AppsAI projects",
|
|
5
|
+
"mcpName": "com.appsai/mcp-server",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "dist/index.js",
|
|
7
8
|
"bin": {
|
|
@@ -28,7 +29,9 @@
|
|
|
28
29
|
},
|
|
29
30
|
"files": [
|
|
30
31
|
"dist",
|
|
31
|
-
"README.md"
|
|
32
|
+
"README.md",
|
|
33
|
+
"server.json",
|
|
34
|
+
"logo.png"
|
|
32
35
|
],
|
|
33
36
|
"keywords": [
|
|
34
37
|
"mcp",
|
package/server.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "com.appsai/mcp-server",
|
|
4
|
+
"description": "Build and deploy full-stack Next.js apps with 98 tools for React, AWS, and MongoDB.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/appsai-inc/mcp-server",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "1.0.2",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"registryBaseUrl": "https://registry.npmjs.org",
|
|
14
|
+
"identifier": "@appsai/mcp-server",
|
|
15
|
+
"version": "1.0.2",
|
|
16
|
+
"transport": {
|
|
17
|
+
"type": "stdio"
|
|
18
|
+
},
|
|
19
|
+
"environmentVariables": [
|
|
20
|
+
{
|
|
21
|
+
"name": "APPSAI_API_KEY",
|
|
22
|
+
"description": "Your AppsAI API key from Settings β Billing β API Keys",
|
|
23
|
+
"isRequired": true,
|
|
24
|
+
"format": "string",
|
|
25
|
+
"isSecret": true
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
}
|