You signed in with another tab or window. Reload
to refresh your session. You signed out in another tab or window. Reload
to refresh your session. You switched accounts on another tab or window. Reload
to refresh your session. Dismiss alert
anvosio / agentify-components Public
These are the components that a user can download to create MCP servers on the fly
13 stars
3 forks
Branches
Tags
Activity
Notifications
You must be signed in to change notification settings
main
Go to file
Code
| Name | | Name | Last commit message | Last commit date |
| --- | --- | --- | --- |
| Latest commit
-------------
History
-------
22 Commits
| | |
| docs | | docs | | |
| examples/TestExample | | examples/TestExample | | |
| src | | src | | |
| .gitignore | | .gitignore | | |
| CHANGELOG.md | | CHANGELOG.md | | |
| CONTRIBUTING.md | | CONTRIBUTING.md | | |
| LICENSE | | LICENSE | | |
| README.md | | README.md | | |
| package-lock.json | | package-lock.json | | |
| package.json | | package.json | | |
| tsconfig.json | | tsconfig.json | | |
| View all files | | |
A framework for adding semantic metadata to React components, making them "agent-aware" for AI systems and automation tools.
Agentify Components solves the problem of making UI components understandable to AI agents. When AI assistants interact with web applications, they typically lack context about what components do, how to interact with them, and what data they handle.
This framework adds a semantic layer to your components through decorators that:
🚀 Note: This framework focuses on component metadata rather than behavior modification. It makes your components "self-describing" to AI systems without changing their functionality.
npm install @anvosio/agentify-components
Right now, this only generates an MCP server. The next most important milestone among other things is enabling to build local tools that can be passed to llms along with the other bunch of tools that your already building
This lets you have both frontend tools and backend tools
Agentify currently supports three main component types: (THE BELOW HAVE BEEN REMOVED AND INSTEAD LIMITED TO API AND NAVIGATION BEHAVIOURS FOR NOW)
The Model Context Protocol (MCP) is an open standard developed by Anthropic to connect AI models with external data sources and tools. It uses a client-server architecture, allowing AI assistants to access live data from various systems like Google Drive, Slack, or databases, enhancing their responses with up-to-date context134. MCP simplifies integrations by providing a universal protocol for secure and standardized connections, replacing custom API connectors with reusable MCP servers
The framework consists of four main parts:
This architecture ensures flexibility—developers can define components once and support multiple protocols by adding new transformers and generators as needed.
import React from 'react';
import { AgentConfig } from '@anvos/agentify-components';
// Add semantic metadata using decorator
@AgentConfig({
type: 'search',
behavior: {
type: 'api',
endpoint: '/api/products/search',
method: 'GET',
queryParam: 'term'
},
description: 'Search for products in the catalog',
})
export class ProductSearch extends React.Component {
render() {
return (
<input
type="search"
onChange={(e) => this.props.onSearch?.(e.target.value)}
placeholder="Search..."
/>
);
}
}
import React from 'react';
import { AgentConfig } from '@anvos/agentify-components';
// Add semantic metadata using decorator
@AgentConfig({
type: 'form',
behavior: {
type: 'api',
endpoint: '/api/auth/login',
method: 'POST'
},
fields: [\
{ name: 'username', type: 'text', required: true },\
{ name: 'password', type: 'password', required: true }\
],
purpose: 'user-authentication',
description: 'User login form for account access'
})
export class LoginForm extends React.Component {
render() {
return (
<form onSubmit={this.props.onSubmit}>
{/* Form fields */}
<input type="text" name="username" />
<input type="password" name="password" />
<button type="submit">Login</button>
</form>
);
}
}
import React from 'react';
import { AgentConfig } from '@anvos/agentify-components';
// Add semantic metadata using decorator
@AgentConfig({
type: 'button',
behavior: {
type: 'navigation',
href: '/checkout'
},
label: 'Proceed to Checkout',
description: 'Navigate to checkout page to complete purchase'
})
export class CheckoutButton extends React.Component {
render() {
return (
<button onClick={this.props.onClick}>
{this.props.children}
</button>
);
}
}
The @anvos/agentify-components
package provides several ways to add agent configuration to your React components:
For functional components, you can use the withAgentConfig
higher-order component to wrap your component with agent configuration:
import { withAgentConfig } from '@anvos/agentify-components';
export const LoginButton = withAgentConfig({
type: 'button',
behavior: { type: 'api', endpoint: '/api/login', method: 'POST' },
label: 'Login Button',
selector: '#login-btn',
description: 'Submits login form via API'
})(() => {
return <button id="login-btn">Login</button>;
});
Alternatively, you can create a functional component and directly assign the agentConfig
property:
import { AgentComponent } from '@anvos/agentify-components';
export const LoginButton2: AgentComponent = () => {
return <button id="login-btn">Login</button>;
};
LoginButton2.agentConfig = {
type: 'button',
behavior: { type: 'api', endpoint: '/api/login', method: 'POST' },
label: 'Login Button',
description: 'Submits login form via API'
};
For class components, you can use the @AgentConfig
decorator directly:
import { AgentConfig } from '@anvos/agentify-components';
@AgentConfig({
type: 'button',
behavior: { type: 'navigation', href: '/home' },
label: 'Home Button',
description: 'Navigates to the home page'
})
class HomeButton extends React.Component {
render() {
return <button id="home-btn">Home</button>;
}
}
export { HomeButton };
When generating the MCP server, the following JSON Schema to Zod type mappings are used:
JSON Schema Type | Zod Schema Type |
---|---|
string |
z.string() |
number |
z.number() |
boolean |
z.boolean() |
array |
z.array(z.string()) |
object |
z.object({}) |
integer |
z.number() |
float |
z.number() |
date |
z.date() |
datetime |
z.date() |
time |
z.date() |
These mappings are used when converting the component metadata to the appropriate format for the MCP server tools.
Add generate.ts file to the root of the project and add the following code:
import { generateMCPServer } from '@anvos/agentify-components';
import * as components from './components/ButtonExample';
const componentList = Object.values(components);
console.log(componentList);
generateMCPServer(componentList, './mcpServer');
Now, add the following scripts to your package.json:
"scripts": {
"build:mcp": "ts-node ./generate.ts",
"deploy:mcp": "echo 'STILL WORKING ON IT'"
}
This will scan your codebase for agentified components and generate an MCP server in the /mcpServer
directory.
To deploy your MCP server:
npm run deploy:mcp
This will deploy your MCP server to the Anvos community MCP servers on GitHub where users can easily access it. Your configuration will be available via a unique URL that you can share with AI systems and tools that support the MCP protocol.
I also intend to take it a step further and make it so that only the needed tools for the client will be retuned back instead of the entire MCP server because this would lead to overfill of the MCP client with unnecessary tools.
See the setup guide
for detailed configuration options for each component type.
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE
file for details.
These are the components that a user can download to create MCP servers on the fly
Just published the npm package Latest\
\
Mar 15, 2025
No packages published
You can’t perform that action at this time.